ahojsvet.guide/config.toml
2026-03-14 14:59:33 +01:00

113 lines
3.6 KiB
TOML

# The URL the site will be built for
base_url = "https://navod.ahojsvet.eu"
# Site title
title = "Návod"
# 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
theme = "duckquill"
default_language = "sk"
taxonomies = [{ name = "tags", feed = true }]
[markdown]
smart_punctuation = true
bottom_footnotes = true
github_alerts = true
[search]
# index_format = "elasticlunr_json"
index_format = "fuse_json"
[extra]
# Duckquill theme configuration
# Site tagline/description
tagline = "Complete guide to managing your online store"
# Author name
author = "Your Store Team"
# Sets theme and browser theme color.
# See https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta/name/theme-color
accent_color = "#ff7800"
# Ditto but for the dark theme.
# If not set regular variant will be used.
accent_color_dark = "#ffa348"
show_copy_button = true
# Whether to show estimated read time in posts.
show_reading_time = false
# Whether to show a share button in article's quick actions.
# Uses https://shareopenly.org.
show_share_button = true
# Whether to show the backlinks button for linked articles in the article's quick actions
show_backlinks = true
styles = [
"custom.css",
]
[extra.nav]
# Whether to automatically hide nav when not hovered or focused
# auto_hide = false
# Whether to show the Atom/RSS feed button in the nav
show_feed = false
# Whether to show the manual theme switcher in the nav
show_theme_switcher = true
# Whether to show the link to the source repository in the nav
show_repo = false
# Links used in the nav.
# For local files use same link format as in Markdown,
# i.e. "@/blog/_index.md".
# See https://www.getzola.org/documentation/content/linking/#internal-links
links = [
{ url = "@/content/_index.md", name = "Obsah (CMS)" },
{ url = "@/taxonomies.md", name = "Taxonómie" },
{ name = "Produkty", menu = [
{ url = "@/products/creating-products.md", name = "Vytvorenie produktu" },
{ url = "@/products/pricing-and-stock.md", name = "Ceny a sklad" }
] },
{ name = "Objednávky", menu = [
{ url = "@/orders-customers/orders.md", name = "Objednávky" },
{ url = "@/orders-customers/users-roles.md", name = "Používatelia a roly" },
{ url = "@/orders-customers/newsletter.md", name = "Newsletter" }
] },
{ name = "Nástroje", menu = [
{ url = "@/tools/analytics.md", name = "Analytika" },
{ url = "@/tools/product-reviews.md", name = "Recenzie produktov" },
{ url = "@/tools/warehouse.md", name = "Sklad" }
] },
{ name = "Základné nastavenia", menu = [
{ url = "@/homepage-management.md", name = "Správa úvodnej stránky" },
{ url = "@/header-management.md", name = "Správa hlavičky" },
{ url = "@/channel-settings.md", name = "Nastavenia kanála" }
] },
{ name = "Akcie a zľavy", menu = [
{ url = "@/promotions/cart-rules.md", name = "Pravidlá košika" },
{ url = "@/promotions/vouchers.md", name = "Vouchery" }
] }
]
[extra.footer]
# Whether to show "© Title, YEAR"
show_copyright = false
# Whether to show "Powered by Zola and Duckquill"
show_powered_by = false
# Whether to show link to website source
show_source = false
links = [
{ url = "@/_index.md", name = "Domov" },
{ url = "@/content/_index.md", name = "Obsah" },
{ url = "@/products/_index.md", name = "Produkty" },
{ url = "@/taxonomies.md", name = "Taxonómie" },
{ url = "@/promotions/_index.md", name = "Akcie a zľavy" }
]