blog/hugo.toml
Zoness 978cbe5895
Some checks are pending
Deploy Hugo / build-deploy (push) Waiting to run
Author updates
2025-12-19 14:27:39 -06:00

65 lines
1.9 KiB
TOML

baseURL = 'https://zoness.me'
languageCode = 'en-us'
title = 'This is Zoness?!'
theme = 'roadster'
enableEmoji = true
[Params]
authorbox = true
post_meta = ["author", "date", "categories"] # Order of post meta information
customCSS = ["/css/custom.css"] # Add after your existing Params
[Params.author]
name = "Zoness"
bio = "Just a programmer writing stuff on the internet."
avatar = "images/avatar.png"
[Params.sidebar]
home = "right" # Configure layout for home page
list = "left" # Configure layout for list pages
single = "right" # Configure layout for single pages
# Enable widgets in given order
widgets = ["search", "recent", "categories", "taglist", "social", "languages"]
[Params.widgets]
recent_num = 5 # Set the number of articles in the "Recent articles" widget
categories_counter = false # Enable counter for each category in "Categories" widget
tags_counter = false # Enable counter for each tag in "Tags" widget
# Custom social links
[[Params.widgets.social.custom]]
title = "Bluesky"
url = "https://bsky.app/profile/zoness.me"
icon = "bluesky.svg" # Optional. Path relative to "layouts/partials"
rel = "me" # Set to false to remove the rel attribute
[[Params.widgets.social.custom]]
title = "Mastodon"
url = "https://mastodo.neoliber.al/@zoness"
icon = "mastodon.svg" # Optional. Path relative to "layouts/partials"
rel = "me" # Set to false to remove the rel attribute
[[Params.widgets.social.custom]]
title = "Tumblr"
url = "https://www.tumblr.com/zon3ss"
icon = "tumblr.svg" # Optional. Path relative to "layouts/partials"
rel = "me" # Set to false to remove the rel attribute
[[Params.widgets.social.custom]]
title = "RSS"
url = "index.xml"
icon = "rss.svg"
[permalinks]
[permalinks.page]
posts = '/posts/:year/:month/:slug/'
pages = '/pages/:slug/'
[i18n]
contentDir = "content"
# RSS
[outputs]
home = ["HTML", "RSS"]