51 lines
1.1 KiB
TOML
51 lines
1.1 KiB
TOML
# The URL the site will be built for
|
|
base_url = "https://personal.lol3r.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
|
|
|
|
theme = "radion"
|
|
|
|
taxonomies = [
|
|
# You can enable/disable RSS
|
|
{ name = "categories", feed = true },
|
|
{ name = "tags", feed = true },
|
|
]
|
|
|
|
author = "Leon"
|
|
generate_feeds = true
|
|
|
|
[search]
|
|
index_format = "elasticlunr_json"
|
|
|
|
[markdown]
|
|
external_links_target_blank = true
|
|
insert_anchor_links = "left"
|
|
|
|
[markdown.highlighting]
|
|
theme = "catppuccin-mocha"
|
|
|
|
[extra]
|
|
# Put all your custom variables here
|
|
enable_search = true
|
|
taxonomies = [
|
|
# You can enable/disable RSS
|
|
{ name = "categories", feed = true },
|
|
{ name = "tags", feed = true },
|
|
]
|
|
|
|
radion_title = "Leon's Personal Blog"
|
|
radion_menu = [
|
|
{ url = "$BASE_URL", name = "Home" },
|
|
{ url = "$BASE_URL/categories", name = "Categories" },
|
|
{ url = "$BASE_URL/tags", name = "Tags" },
|
|
]
|
|
theme = "toggle" # options: {light, dark, auto, toggle}
|
|
toc = true
|
|
comments = false
|
|
codeblock = true
|
|
|