You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
978 B
TOML
41 lines
978 B
TOML
# The URL the site will be built for
|
|
base_url = "https://blog.trivernis.net"
|
|
|
|
title = "Trivernis' Blog"
|
|
description = "This is my half-hearted effort at writing a blog"
|
|
default_language = "en"
|
|
|
|
|
|
# compilation
|
|
compile_sass = true
|
|
minify_html = true
|
|
|
|
# Whether to build a search index to be used later on by a JavaScript library
|
|
build_search_index = true
|
|
|
|
theme = "after-dark"
|
|
|
|
generate_feed = true
|
|
|
|
taxonomies = [
|
|
# You can enable/disable RSS
|
|
{name = "categories", feed = true},
|
|
{name = "tags", feed = true},
|
|
]
|
|
|
|
[markdown]
|
|
highlight_code = true
|
|
render_emoji = true
|
|
smart_punctuation = true
|
|
|
|
[extra]
|
|
# Put all your custom variables here
|
|
author = "Trivernis"
|
|
after_dark_menu = [
|
|
{url = "$BASE_URL", name = "Home"},
|
|
{url = "$BASE_URL/categories", name = "Categories"},
|
|
{url = "$BASE_URL/tags", name = "Tags"},
|
|
{url = "https://trivernis.net", name = "Website"},
|
|
{url = "https://git.trivernis.net", name = "Git"},
|
|
]
|
|
after_dark_title = "My Awesome Blog" |