Initial blog setup — Hugo + PaperMod
This commit is contained in:
commit
30b24f1f20
6 changed files with 64 additions and 0 deletions
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
public/
|
||||||
|
resources/
|
||||||
|
.hugo_build.lock
|
||||||
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
[submodule "themes/PaperMod"]
|
||||||
|
path = themes/PaperMod
|
||||||
|
url = https://github.com/adityatelange/hugo-PaperMod.git
|
||||||
5
archetypes/default.md
Normal file
5
archetypes/default.md
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
+++
|
||||||
|
date = '{{ .Date }}'
|
||||||
|
draft = true
|
||||||
|
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
|
||||||
|
+++
|
||||||
18
content/posts/hello-world.md
Normal file
18
content/posts/hello-world.md
Normal file
|
|
@ -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!
|
||||||
34
hugo.toml
Normal file
34
hugo.toml
Normal file
|
|
@ -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
|
||||||
1
themes/PaperMod
Submodule
1
themes/PaperMod
Submodule
|
|
@ -0,0 +1 @@
|
||||||
|
Subproject commit 154d006e0182dfc7da38008323976b02e6bfab4a
|
||||||
Loading…
Add table
Reference in a new issue