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.

46 lines
1.6 KiB
TOML

2 years ago
# Necessary stuff.
base_url = "http://127.0.0.1:1111"
2 years ago
title = "~/tabi"
description = "tabi is a simple personal site and blogging theme for Zola."
generate_feed = true
compile_sass = true
minify_html = true
taxonomies = [
{name = "tags", feed = true},
]
[markdown]
external_links_target_blank = true
2 years ago
highlight_code = true
highlight_theme = "css"
2 years ago
[extra]
use_cdn = false
date_format = "" # If unset, uses format: "1st January 2049"
2 years ago
#Full path after the base URL required. So if you were to place it in "static" it would be "/favicon.ico"
favicon = ""
#This header image is used for SEO. For example if you were to share an image via Messenger/Instagram/Twitter a preview picture is also presented
headerImage = ""
# The icon is display besides the menu text but is not necessary. It needs to be placed under "menu_icon" in the static "folder"
menu = [
{ name = "home", url = "$BASE_URL/" },
{ name = "archive", url = "$BASE_URL/archive" },
{ name = "tags", url = "$BASE_URL/tags" },
{ name = "projects", url = "$BASE_URL/projects" },
2 years ago
]
2 years ago
#The icons available can be found in "social_icons" in the "static" folder
socials = [
{ name = "atom feed", url = "$BASE_URL/atom.xml", icon = "rss" },
2 years ago
{ name = "github", url = "https://github.com/welpo/", icon = "github" },
{ name = "soundcloud", url = "https://soundcloud.com/oskerwyld", icon = "soundcloud" },
{ name = "instagram", url = "https://instagram.com/oskerwyld", icon = "instagram" },
{ name = "youtube", url = "https://youtube.com/@oskerwyld", icon = "youtube" },
{ name = "spotify", url = "https://open.spotify.com/artist/5Hv2bYBhMp1lUHFri06xkE", icon = "spotify" },
]