webbed-site/config.toml

49 lines
1.4 KiB
TOML
Raw Normal View History

2024-02-19 12:03:58 -06:00
# The URL the site will be built for
2024-07-07 08:27:18 -05:00
base_url = "https://peachmoon.moe"
2024-02-19 12:03:58 -06:00
2024-02-27 07:28:33 -06:00
title = "🍑🌙 peachmoon"
description = "a small peach fairy's website"
2024-02-19 12:03:58 -06:00
compile_sass = true
2024-02-19 23:55:49 -06:00
minify_html = true
2024-07-07 08:29:23 -05:00
generate_feeds = true
2024-02-19 23:55:49 -06:00
default_language = "en"
2024-02-19 12:03:58 -06:00
2024-07-07 08:27:18 -05:00
author = "mana"
2024-02-20 04:10:21 -06:00
2024-02-19 12:03:58 -06:00
[markdown]
highlight_code = true
2024-02-19 23:55:49 -06:00
render_emoji = true
external_links_target_blank = true
2024-07-07 08:27:18 -05:00
2024-02-19 23:55:49 -06:00
smart_punctuation = true
2024-02-19 12:03:58 -06:00
2024-07-07 08:27:18 -05:00
# Whether to set decoding="async" and loading="lazy" for all images
# When turned on, the alt text must be plain text.
# For example, `![xx](...)` is ok but `![*x*x](...)` isnt ok
lazy_async_image = true
[slugify]
paths = "on"
taxonomies = "on"
anchors = "safe"
# Whether to remove date prefixes for page path slugs.
# For example, content/posts/2016-10-08_a-post-with-dates.md => posts/a-post-with-dates
# When true, content/posts/2016-10-08_a-post-with-dates.md => posts/2016-10-08-a-post-with-dates
paths_keep_dates = false
2024-02-20 04:10:21 -06:00
2024-02-19 12:03:58 -06:00
[extra]
# Put all your custom variables here
2024-02-19 23:55:49 -06:00
header_nav = [
2024-07-07 08:27:18 -05:00
{ url = "/blog", name_en = "blog" },
{ url = "/now", name_en = "now" },
{ url = "/webcore", name_en = "webcore" },
{ url = "/music", name_en = "music" },
{ url = "/games", name_en = "games" },
{ url = "/fridge", name_en = "the fridge" },
{ url = "/rkgk", name_en = "rkgk" },
{ url = "/about", name_en = "about" },
2024-07-08 10:12:45 -05:00
{ url = "/updates", name_en = "updates" },
2024-07-07 08:27:18 -05:00
{ url = "/contact", name_en = "contact me" }
2024-02-27 07:28:33 -06:00
]