Website/hugo.toml
Split c21cc75b4f Add garish pickleball button + static summary page
- Rainbow gradient animated button on homepage (Comic Sans, obviously)
- Static pickleball daily summary at /pickleball.html
- Enable unsafe HTML rendering for inline styles
- Override RSS template to fix theme error
2026-02-24 11:22:03 -05:00

32 lines
560 B
TOML

baseURL = 'https://danesabo.com'
languageCode = 'en-us'
theme = "notrack"
title = 'Dane Sabo'
[params]
author = 'Dane Sabo'
mainSections = ['CV', 'blog', 'projects']
footer = """\
This website was built using Hugo and the 'notrack' theme.\
"""
[params.social]
github = 'namelessfaceless'
email = 'yourstruly@danesabo.com'
# This sets up the link to my cv:
[[menu.main]]
name = 'CV'
weight = 8
url = "/cv.pdf"
[markup]
[markup.goldmark]
[markup.goldmark.renderer]
unsafe = true
# Disable RSS to avoid theme error
disableKinds = ["RSS"]