- Hugo site initialized with PaperMod theme (via submodule) - Configured hugo.toml with blog metadata, nav, and social links - Added hello-world post and about page - Added .gitignore Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
44 lines
1 KiB
TOML
44 lines
1 KiB
TOML
baseURL = "https://shautvast.github.io/blog/"
|
|
languageCode = "en-us"
|
|
title = "Sander Hautvast"
|
|
theme = "PaperMod"
|
|
[pagination]
|
|
pagerSize = 10
|
|
|
|
[params]
|
|
author = "Sander Hautvast"
|
|
description = "Thoughts on software, systems, and everything in between"
|
|
defaultTheme = "auto"
|
|
ShowReadingTime = true
|
|
ShowShareButtons = false
|
|
ShowPostNavLinks = true
|
|
ShowBreadCrumbs = true
|
|
ShowCodeCopyButtons = true
|
|
ShowToc = true
|
|
TocOpen = false
|
|
ShowFullTextinRSS = true
|
|
|
|
[params.homeInfoParams]
|
|
Title = "Hi, I'm Sander"
|
|
Content = "Software engineer writing about Rust, Java, systems programming, and whatever else I find interesting."
|
|
|
|
[[params.socialIcons]]
|
|
name = "github"
|
|
url = "https://github.com/shautvast"
|
|
|
|
[menu]
|
|
[[menu.main]]
|
|
identifier = "posts"
|
|
name = "Posts"
|
|
url = "/posts/"
|
|
weight = 10
|
|
[[menu.main]]
|
|
identifier = "tags"
|
|
name = "Tags"
|
|
url = "/tags/"
|
|
weight = 20
|
|
[[menu.main]]
|
|
identifier = "about"
|
|
name = "About"
|
|
url = "/about/"
|
|
weight = 30
|