Get started on my own blog
This commit is contained in:
48
zola.toml
Normal file
48
zola.toml
Normal file
@@ -0,0 +1,48 @@
|
||||
# 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]
|
||||
|
||||
[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
|
||||
|
||||
Reference in New Issue
Block a user