jessite/config.toml

62 lines
1.7 KiB
TOML

title = "Jessica Phoenix Canady"
page_titles = "combined"
author = "Jessica Phoenix Canady"
# The URL the site will be built for
base_url = "https://jess.canady.tech/"
# 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"
feed_limit = 20
taxonomies = [
{ name = "tags" },
]
[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"
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/"},
{name = "code", url = "https://git.gay/jesscanady/", external = true},
{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.
post_view_navigation_prompt = "EOF reached"
copyright_html = """
<p>Built with trans dork love.</p>
<p>This site under construction.</p>
"""