Files
website/config.toml
2025-02-21 23:14:11 -05:00

52 lines
1.5 KiB
TOML

# The URL the site will be built for
base_url = "https://bombadad.dev"
# 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 = false
# The site theme to use.
theme = "terminimal"
taxonomies = [
{name = "tags"},
]
[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
# The logo text - defaults to "Terminimal theme"
logo_text = "Bombadad"
# Author name: when specified, modifies the default
# copyright text. Apart from author, it will
# contain current year and a link to the theme.
author = "Caleb B"
background_color = "blue"
# menu is enabled by adding menu_items (optional)
menu_items = [
# each of these is optional, name and url are required
# $BASE_URL is going to be substituted by base_url from configuration
{name = "blog", url = "$BASE_URL"},
# tags should only be enabled if you have "tags" taxonomy
# see documentation below for more details
{name = "tags", url = "$BASE_URL/tags"},
{name = "archive", url = "$BASE_URL/archive"},
{name = "about me", url = "$BASE_URL/about"},
{name = "RE_Learnings", url = "$BASE_URL/re"},
# set newtab to true to make the link open in new tab
{name = "github", url = "https://github.com/Bombadad", newtab = true},
]