jessite/config.toml

71 lines
1.6 KiB
TOML
Raw Normal View History

2024-01-02 23:57:28 +00:00
title = "Jessica Phoenix Canady"
page_titles = "combined"
author = "Jessica Phoenix Canady"
# The URL the site will be built for
2024-02-18 18:41:47 +00:00
base_url = "https://jess.canady.tech/"
2024-01-02 23:57:28 +00:00
# Theme!
theme = "terminette"
# 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
generate_feed = true
feed_filename = "rss.xml"
2024-01-02 23:57:28 +00:00
feed_limit = 20
2024-01-07 21:28:09 +00:00
taxonomies = [
{ name = "tags" },
]
2024-01-02 23:57:28 +00:00
[markdown]
# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola
highlight_code = true
render_emoji = true
[extra]
logo_text = "Jessica Pheonix Canady"
accent_color = "pink"
background_color = "pink"
author = "Jessica Phoenix Canady"
# copyright_html = "Bottom text goes here"
2024-01-02 23:57:28 +00:00
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 = "home", 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 = "blog archive", url = "$BASE_URL/blog/"},
{name = "about", url = "$BASE_URL/about/"},
{name = "now", url = "$BASE_URL/now/"},
2024-01-02 23:57:28 +00:00
{name = "rss", url = "$BASE_URL/rss.xml"}
]
# Whether to show links to earlier and later links on posts
enable_post_view_navigation = true
# The text shown at the bottom of a post,
# before earlier/later post links.
2024-01-07 21:29:28 +00:00
post_view_navigation_prompt = "EOF reached"
2024-01-19 23:29:55 +00:00
copyright_html = """
<p>Built with trans dork love.</p>
<p>This site under construction.</p>
"""