121 lines
2.6 KiB
TOML
121 lines
2.6 KiB
TOML
baseURL = 'https://dustin.coffee/'
|
|
languageCode = 'en-us'
|
|
title = 'd@n tech'
|
|
theme = 'hello-friend-ng'
|
|
|
|
[params]
|
|
# description = "Personal website of Dustin"
|
|
[params.Author]
|
|
name = "dustin"
|
|
email = "dustin@dustin.coffee"
|
|
|
|
dateform = "Jan 2, 2006"
|
|
dateformShort = "Jan 2"
|
|
dateformNum = "2006-01-02"
|
|
dateformNumTime = "2006-01-02 15:04"
|
|
|
|
# Subtitle for home
|
|
homeSubtitle = "how did YOU get here?"
|
|
Subtitle = "how did YOU get here?"
|
|
|
|
# Set disableReadOtherPosts to true in order to hide the links to other posts.
|
|
disableReadOtherPosts = false
|
|
|
|
# Enable sharing buttons, if you like
|
|
enableSharingButtons = true
|
|
|
|
# Show a global language switcher in the navigation bar
|
|
enableGlobalLanguageMenu = false
|
|
|
|
# Metadata mostly used in document's head
|
|
description = "...it's my blog."
|
|
keywords = "homepage, blog"
|
|
images = [""]
|
|
themeColor = "#3D2200"
|
|
|
|
# Custom CSS
|
|
customCSS = ["css/custom.css"]
|
|
|
|
# Favicon colors
|
|
[params.favicon.color]
|
|
mask = "#F8FDDD"
|
|
msapplication = "#F8FDDD"
|
|
theme = "#F8FDDD"
|
|
|
|
# Footer configuration
|
|
[params.footer]
|
|
trademark = 2026
|
|
rss = true
|
|
copyright = true
|
|
author = true
|
|
topText = []
|
|
bottomText = [
|
|
"Powered by <a href=\"https://gohugo.io\">Hugo</a>",
|
|
"Theme: <a href=\"https://github.com/rhazdon/hugo-theme-hello-friend-ng\">hello-friend-ng</a>"
|
|
]
|
|
|
|
# Reading time
|
|
enableReadingTime = true
|
|
|
|
# Theme toggle (default respects OS preference)
|
|
enableThemeToggle = false
|
|
|
|
# Social icons (uncomment and add as needed)
|
|
# [[params.social]]
|
|
# name = "github"
|
|
# url = "https://github.com/yourusername"
|
|
|
|
[taxonomies]
|
|
tag = "tags"
|
|
category = "categories"
|
|
series = "series"
|
|
|
|
[permalinks]
|
|
posts = "/posts/:year/:month/:title/"
|
|
|
|
[languages]
|
|
[languages.en]
|
|
title = "dustin newkirk"
|
|
keywords = ""
|
|
copyright = '<a href="https://creativecommons.org/licenses/by-nc/4.0/" target="_blank" rel="noopener">CC BY-NC 4.0</a>'
|
|
readOtherPosts = "Read other posts"
|
|
|
|
[languages.en.params]
|
|
subtitle = "how did YOU get here?"
|
|
|
|
[languages.en.params.logo]
|
|
logoText = "d@n tech"
|
|
logoHomeLink = "/"
|
|
# or
|
|
#
|
|
# path = "/img/your-example-logo.svg"
|
|
# alt = "Your example logo alt text"
|
|
|
|
# And you can even create generic menu
|
|
|
|
[[menu.main]]
|
|
name = "home"
|
|
pageRef = "/"
|
|
weight = 10
|
|
|
|
[[menu.main]]
|
|
name = "about"
|
|
pageRef = "/about"
|
|
weight = 20
|
|
|
|
[[menu.main]]
|
|
name = "resume"
|
|
pageRef = "/resume"
|
|
weight = 30
|
|
|
|
[[menu.main]]
|
|
name = "blog"
|
|
pageRef = "/posts"
|
|
weight = 40
|
|
|
|
[[menu.main]]
|
|
name = "dev"
|
|
url = "https://dev.dustin.coffee"
|
|
externalURL = true
|
|
weight = 50
|