38 lines
669 B
TOML
38 lines
669 B
TOML
# The URL the site will be built for
|
|
base_url = "https://blog.jika.li"
|
|
|
|
# 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
|
|
|
|
title = "My Blog"
|
|
theme = "terminimal"
|
|
generate_feeds = true
|
|
|
|
taxonomies = [
|
|
{ name = "tags", feed = true },
|
|
]
|
|
|
|
|
|
[markdown.highlighting]
|
|
theme = "catppuccin-mocha"
|
|
|
|
[extra]
|
|
accent_color = "pink"
|
|
background_color = "dark"
|
|
|
|
[extra.hero]
|
|
title = "Welcome to my blog"
|
|
subtitle = "Thoughts on code and craft"
|
|
|
|
[[extra.nav]]
|
|
name = "Blog"
|
|
url = "/blog/"
|
|
|
|
[[extra.nav]]
|
|
name = "About"
|
|
url = "/about/"
|
|
|