blag/hugo_blag/config.toml
2020-02-17 16:31:15 -05:00

63 lines
1.5 KiB
TOML

baseURL = "http://example.org/"
languageCode = "en-us"
title = "My New Hugo Site"
# Want to use this but the default code theme is fucking hideous:
#theme = "indigo"
#theme = "zen"
# This one *does* use 'highlight' below:
#theme = "nofancy"
theme = "hugo-notepadium"
#PygmentsCodeFences = true
#PygmentsStyle = "monokai"
[params.math]
enable = true # optional: true, false. Enable globally, default:
# false. You can always enable math on per page.
# (how?)
use = "mathjax" # option: "katex", "mathjax". default: "katex"
[params]
# See themes/nofancy/static/highlight/styles for available options
#highlight="tomorrow"
# Controls what items are listed in the top nav menu
# "none", or "categories"
# If you have too many categories to fit in the top nav menu, set this to "none"
topmenu="categories"
# none of this is taking any effect despite
# https://gohugo.io/getting-started/configuration-markup#highlight:
#[markup]
# [markup.highlight]
# codeFences = true
# guessSyntax = false
# hl_Lines = ""
# lineNoStart = 1
# lineNos = false
# lineNumbersInTable = true
# noClasses = true
# style = "monokai"
# tabWidth = 4
[params.nav]
showCategories = true # /categories/
showTags = true # /tags/
[[params.nav.custom]]
title = "Posts"
url = "/posts"
[[params.nav.custom]]
title = "About"
url = "/about"
[[params.nav.custom]]
title = "Old Crap"
url = "/old_crap"
[[params.nav.custom]]
title = "Hugo"
url = "https://gohugo.io/"