website-zola/config.toml
iris fb1b2f525d
Some checks failed
Deploy to neocities / deploy (push) Has been cancelled
more rss stuff wooooow
2025-03-30 22:24:28 -03:00

65 lines
No EOL
2.1 KiB
TOML

# The URL the site will be built for
base_url = "/"
# Whether to automatically compile all Sass files in the sass directory
compile_sass = true
generate_feeds = true
# Use `rss.xml` for RSS feeds and `atom.xml` for ATOM.
feed_filenames = ["rss.xml", "atom.xml"]
description = "i want to make a trillion dollars one day"
# Whether to build a search index to be used later on by a JavaScript library
build_search_index = true
theme = "terminimal"
taxonomies = [
{name = "tags"},
]
author = "iris"
[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]
# 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 = "/tags"},
{name = "archive", url = "/pages/archive"},
{name = "about me", url = "/pages/aboutme"},
{name = "gallery", url = "/pages/gallery"},
{name = "donate", url = "/pages/givememoney"},
{name = "links", url = "/pages/links"},
{name = "services", url = "/pages/services"},
{name = "webrings", url = "/pages/webrings"},
{name = "guestbook", url = "https://authen.atabook.org/"},
{name = "rss", url = "/rss.xml"},
{name = "atom", url = "/atom.xml"},
]
# One of: blue, green, orange, pink, red.
# Defaults to blue.
# Append -light for light themes, e.g. blue-light
# Or append -auto, e.g. blue-auto
accent_color = "red"
# One of: blue, dark, green, orange, pink, red, light, auto
# Enabling dark background will also modify primary font color to be darker.
# Defaults to accent color (or, if not accent color specified, to blue).
background_color = "red"
logo_text = "authenyo.xyz"
favicon = "/images/favicon.png"
favicon_mimetype = "image/png"
author = "iris"
copyright_html = "<span><a href=https://github.com/authenyoo/website-zola>source code</a></span>"