Initial commit

This commit is contained in:
LordMathis 2023-02-12 19:02:38 +01:00
commit 3fa409f68b
6 changed files with 64 additions and 0 deletions

6
archetypes/default.md Normal file
View File

@ -0,0 +1,6 @@
---
title: "{{ replace .Name "-" " " | title }}"
date: {{ .Date }}
draft: true
---

41
config.toml Normal file
View File

@ -0,0 +1,41 @@
baseURL = 'https://namesny.com/'
languageCode = 'en-us'
[module]
[[module.imports]]
path = "github.com/LordMathis/hugo-theme-nightfall"
[menu]
[[menu.header]]
name = "blog"
weight = 0
url = "blog"
[[menu.header]]
name = "about"
weight = 1
url = "about"
[params]
author = "Matúš Námešný"
user = "hello"
hostname = "namesny.com"
[[params.social]]
key = 0
name = "github"
url = "https://github.com/LordMathis"
[[params.social]]
key = 1
name = "gitea"
url = "https://git.namesny.com/Mathis"
[[params.social]]
key = 2
name = "linkedin"
url = "https://www.linkedin.com/in/matus-namesny/"
[[params.social]]
key = 3
name = "email"
url = "mailto:matus@namesny.com"

5
content/about.md Normal file
View File

@ -0,0 +1,5 @@
I am a Software Engineer based in Darmstadt, Germany.
I am interested in broad range of topics including Machine Learning, Cloud, DevOps, Linux and open source.
This is a place for me to write and to showcase my projects.

5
content/blog/gitea.md Normal file
View File

@ -0,0 +1,5 @@
---
title: "Replicating Gitea Docker SSH Passthrough on k8s"
date: "2023-02-12"
---

5
go.mod Normal file
View File

@ -0,0 +1,5 @@
module git.namesny.com/Mathis/namesny.com
go 1.20
require github.com/LordMathis/hugo-theme-nightfall v0.0.0-20230212174009-2c8d4fffb860 // indirect

2
go.sum Normal file
View File

@ -0,0 +1,2 @@
github.com/LordMathis/hugo-theme-nightfall v0.0.0-20230212174009-2c8d4fffb860 h1:LzjrUKFEafD+4VBGyQjWnbYdmv/gb0LV8zBNZ/2IdmM=
github.com/LordMathis/hugo-theme-nightfall v0.0.0-20230212174009-2c8d4fffb860/go.mod h1:0tCPxAeg5+tWhv17517Q8Lti/TPh0KNyON/uferEU30=