commit 30b24f1f201393d1c47889ef5e8a91e30363b554 Author: Tessa Date: Sat Jun 6 11:13:16 2026 +0000 Initial blog setup — Hugo + PaperMod diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1c3fa73 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +public/ +resources/ +.hugo_build.lock diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..89af1b0 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "themes/PaperMod"] + path = themes/PaperMod + url = https://github.com/adityatelange/hugo-PaperMod.git 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/content/posts/hello-world.md b/content/posts/hello-world.md new file mode 100644 index 0000000..da123ca --- /dev/null +++ b/content/posts/hello-world.md @@ -0,0 +1,18 @@ ++++ +date = '2026-06-06T10:50:00+02:00' +draft = false +title = 'Hello World' +description = 'De eerste post op holoshaii.dev!' +tags = ['meta'] ++++ + +## Hallo wereld! 🎉 + +Dit is de eerste post op mijn nieuwe blog. Hier ga ik schrijven over: + +- **Software development** — .NET, Blazor, game dev, en self-hosting avonturen +- **Gaming** — Stellaris modding, RimWorld, strategies +- **Transitie** — ervaringen en levenslessen +- **Tech** — privacy tools, server beheer, en wat me verder bezighoudt + +Stay tuned! diff --git a/hugo.toml b/hugo.toml new file mode 100644 index 0000000..c2a3ecc --- /dev/null +++ b/hugo.toml @@ -0,0 +1,34 @@ +baseURL = 'https://blog.holoshaii.dev/' +languageCode = 'nl' +defaultContentLanguage = 'nl' +title = 'holoshaii' +theme = 'PaperMod' + +[params] + description = "Tessa's blog — dev, gaming, transitie, en meer" + author = 'Tessa' + ShowReadingTime = true + ShowShareButtons = true + ShowPostNavLinks = true + ShowBreadCrumbs = true + ShowCodeCopyButtons = true + ShowWordCount = true + ShowRssButtonInSectionTermList = true + ShowToc = true + + [params.homeInfoParams] + Title = 'Welkom 👋' + Content = "Hoi! Ik ben Tessa en dit is mijn plek om te schrijven over software development, gaming, transitie, en alles wat me bezighoudt." + + [[params.socialIcons]] + name = 'codeberg' + url = 'https://codeberg.org/tessanijholt' + + [[params.socialIcons]] + name = 'rss' + url = 'index.xml' + +[markup] + [markup.highlight] + style = 'dracula' + noClasses = false diff --git a/themes/PaperMod b/themes/PaperMod new file mode 160000 index 0000000..154d006 --- /dev/null +++ b/themes/PaperMod @@ -0,0 +1 @@ +Subproject commit 154d006e0182dfc7da38008323976b02e6bfab4a