blog/config.toml

46 lines
1.3 KiB
TOML
Raw Normal View History

2022-11-12 01:07:47 +00:00
name = "From the Office of the Chief Sundries Officer and Head of R&D"
# The URL the site will be built for
base_url = "https://proclamations.nebcorp-hias.com"
# Whether to automatically compile all Sass files in the sass directory
compile_sass = true
# Whether to build a search index to be used later on by a JavaScript library
build_search_index = true
generate_feed = true
taxonomies = [
2023-01-08 03:13:01 +00:00
{name = "tags", feed = true},
2022-11-12 01:07:47 +00:00
]
2023-01-08 03:13:01 +00:00
theme = "apollo"
2023-01-12 05:26:00 +00:00
mathjax = true
mathjax_dollar_inline_enable = true
2023-01-08 03:13:01 +00:00
2022-11-12 01:07:47 +00:00
[markdown]
# Whether to do syntax highlighting
# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola
highlight_code = true
[extra]
# Put all your custom variables here
socials = [
{ name = "gitlab", url = "https://gitlab.com/nebkor", icon = "gitlab" },
{ name = "github", url = "https://github.com/nebkor", icon = "github" },
{ name = "mastodon", url = "https://socialnotwork.net/@nebkor", icon = "mastodon" },
]
2022-11-12 06:33:21 +00:00
toc = true
2022-11-12 01:07:47 +00:00
use_cdn = false
favicon = "/icon/favicon.png"
menu = [
{ name = "R&D", url = "/rnd", weight = 1 },
{ name = "sundries", url = "/sundries", weight = 2 },
2022-11-12 06:33:21 +00:00
{ name = "about", url = "/about", weight = 3 },
{ name = "home", url = "/", weight = 4 },
2023-01-08 03:13:01 +00:00
{ name = "tags", url = "/tags", weight = 5 }
2022-11-12 01:07:47 +00:00
]