commit 3fa409f68b364c3efb4b632dd809c96b5661b95f Author: LordMathis Date: Sun Feb 12 19:02:38 2023 +0100 Initial commit diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..00e77bd --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,6 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +date: {{ .Date }} +draft: true +--- + diff --git a/config.toml b/config.toml new file mode 100644 index 0000000..f627343 --- /dev/null +++ b/config.toml @@ -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" diff --git a/content/about.md b/content/about.md new file mode 100644 index 0000000..d0ca64b --- /dev/null +++ b/content/about.md @@ -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. \ No newline at end of file diff --git a/content/blog/gitea.md b/content/blog/gitea.md new file mode 100644 index 0000000..1627ac1 --- /dev/null +++ b/content/blog/gitea.md @@ -0,0 +1,5 @@ +--- +title: "Replicating Gitea Docker SSH Passthrough on k8s" +date: "2023-02-12" +--- + diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..77480a4 --- /dev/null +++ b/go.mod @@ -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 diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..afd3420 --- /dev/null +++ b/go.sum @@ -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=