blag/config.toml
Chris Hodapp 94310f0f9d Migrate *all* photos to the cavelab setup. Header/footer still broken.
Completely remove the other image gallery themes.

I now have: image galleries, with lightboxes, and captions, with links
in them (and to Hugo pages), with full images lazy-loaded, with all
thumbnails auto-generated, and the ability to do this on both
individual images *and* with globbing, from page resources, from this
page or any specified one.  See cavelab_notes.txt.

It also has the ability to use Exif data of the photo - if I
preprocess it into a JSON file.

Known issues:
- The theme header/footer are now being overridden.  I am working to
  fix this first.
- I am missing some kind of fonts/images needed for the lightbox to
  show up properly.
2022-09-04 12:31:08 -04:00

103 lines
2.3 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"
# This is for when I am running on GitLab's URL:
relativeURLs = true
#PygmentsCodeFences = true
#PygmentsStyle = "monokai"
#staticDir = "static"
# This won't work until I'm using Goldmark instead of Blackfriday.
# See https://gohugo.io/getting-started/configuration-markup/#table-of-contents
[markup]
[markup.tableOfContents]
startLevel = 1
endLevel = 2
[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"
style="auto"
#slogan="slogan whatever"
# 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 = "Home"
url = "/"
[[params.nav.custom]]
title = "Posts"
url = "/posts"
[[params.nav.custom]]
title = "About"
url = "/about"
[[params.nav.custom]]
title = "Links"
url = "/links"
# Big TODO: Move this elsewhere.
[[params.nav.custom]]
title = "Works"
url = "/works/front"
[[params.nav.custom]]
title = "Archive"
url = "/archive"
[[params.nav.custom]]
title = "Pages"
url = "/pages"
# Disable these for now until I fix the tags/categories a bit:
# [[params.nav.custom]]
# title = "Tags"
# url = "/tags"
# [[params.nav.custom]]
# title = "Categories"
# url = "/categories"
#[[params.nav.custom]]
#title = "Hugo"
#url = "https://gohugo.io/"