diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c4b387a --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.hugo_build.lock +public/ diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..521161a --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "themes/etch"] + path = themes/etch + url = https://github.com/LukasJoswiak/etch.git 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..e1ddd76 --- /dev/null +++ b/config.toml @@ -0,0 +1,35 @@ +baseURL = "https://www.rustybever.be" +title = "The Rusty Bever" +theme = "etch" +languageCode = "en-US" +enableInlineShortcodes = true +pygmentsCodeFences = true +pygmentsUseClasses = true + +[params] + description = "Description" + copyright = "Copyright © 2022 Jef Roosens" + dark = "auto" + highlight = true + +[menu] + [[menu.main]] + identifier = "posts" + name = "posts" + title = "posts" + url = "/" + weight = 10 + + [[menu.main]] + identifier = "about" + name = "about" + title = "about" + url = "/about/" + weight = 20 + +[permalinks] + posts = "/:title/" + +[markup.goldmark.renderer] + # Allows HTML in Markdown + unsafe = true diff --git a/content/about/index.md b/content/about/index.md new file mode 100644 index 0000000..adb781b --- /dev/null +++ b/content/about/index.md @@ -0,0 +1,5 @@ +--- +title: "About" +--- + +Hi, my name is Jef! diff --git a/themes/etch b/themes/etch new file mode 160000 index 0000000..1969ea2 --- /dev/null +++ b/themes/etch @@ -0,0 +1 @@ +Subproject commit 1969ea26457aef716efae848c5d08c8a00d75a69