diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..77363a2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +*/public/* +public/ \ No newline at end of file diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..25b6752 --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,5 @@ ++++ +date = '{{ .Date }}' +draft = true +title = '{{ replace .File.ContentBaseName "-" " " | title }}' ++++ diff --git a/hugo.toml b/hugo.toml new file mode 100644 index 0000000..b023d7e --- /dev/null +++ b/hugo.toml @@ -0,0 +1,19 @@ +baseURL = 'https://michivonah.ch' +languageCode = 'de-CH' +title = 'Michi von Ah - Informatiker, Tech-Enthusiast & Achterbahn-Fan' + +[params] + description = "" + tags = "" + author = "Michi von Ah" + faviconPath = "" + themeColor = "" + +defaultContentLanguage = 'de' +[languages] + [languages.de] + contentDir = 'content/de' + languageName = 'Deutsch' + [languages.en] + contentDir = 'content/en' + languageName = 'English' \ No newline at end of file