0.9
This commit is contained in:
parent
457d66f2c6
commit
fbc79df143
23 changed files with 2611 additions and 4 deletions
116
config.toml
116
config.toml
|
|
@ -1,16 +1,124 @@
|
|||
# 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
|
||||
|
||||
[markdown]
|
||||
theme = "duckquill"
|
||||
|
||||
[markdown.highlighting]
|
||||
theme = "catppuccin-mocha"
|
||||
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]
|
||||
# Put all your custom variables here
|
||||
# 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 = true
|
||||
#
|
||||
# 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
|
||||
# Navigation links
|
||||
links = [
|
||||
{ name = "Obsah a médiá", menu = [
|
||||
{ url = "@/content-media/creating-blog-post.md", name = "Ako vytvoriť blogový príspevok" },
|
||||
{ url = "@/content-media/creating-static-page.md", name = "Ako vytvoriť statickú stránku" },
|
||||
{ url = "@/content-media/sending-newsletter.md", name = "Ako odoslať newsletter" },
|
||||
{ url = "@/content-media/showing-posts-on-homepage.md", name = "Ako zobraziť články na homepage" },
|
||||
{ url = "@/content-media/linking-author-articles.md", name = "Ako prepojiť článok s taxonómiou" },
|
||||
{ url = "@/content-media/media-library.md", name = "Knižnica médií" }
|
||||
] },
|
||||
{ url = "@/taxonomies.md", name = "Taxonómie" },
|
||||
{ name = "Produkty", menu = [
|
||||
{ url = "@/products/creating-products.md", name = "Vytvorenie produktu" },
|
||||
{ url = "@/products/product-variants.md", name = "Varianty produktov" },
|
||||
{ url = "@/products/pricing.md", name = "Ceny" },
|
||||
{ url = "@/products/stock-management.md", name = "Skladové zásoby" }
|
||||
] },
|
||||
{ name = "Základné nastavenia", menu = [
|
||||
{ url = "@/homepage-management.md", name = "Správa úvodnej stránky" },
|
||||
{ url = "@/header-management.md", name = "Správa hlavičky" },
|
||||
] },
|
||||
{ name = "Akcie a zľavy", menu = [
|
||||
{ url = "@/promotions/cart-rules.md", name = "Pravidlá košika" },
|
||||
{ url = "@/promotions/vouchers.md", name = "Vouchery" }
|
||||
] }
|
||||
]
|
||||
|
||||
[extra.footer]
|
||||
# Footer links - simplified version
|
||||
links = [
|
||||
{ url = "@/_index.md", name = "Domov" },
|
||||
{ url = "@/products/_index.md", name = "Produkty" },
|
||||
{ url = "@/taxonomies.md", name = "Taxonómie" },
|
||||
{ url = "@/promotions/_index.md", name = "Akcie a zľavy" },
|
||||
{ url = "@/content-media/_index.md", name = "Obsah a médiá" }
|
||||
]
|
||||
|
||||
|
||||
# Show "Back to top" button
|
||||
show_back_to_top = true
|
||||
|
||||
# Show reading time on pages
|
||||
show_reading_time = false
|
||||
|
||||
# Footer text
|
||||
footer = "Your Store Management Guide"
|
||||
|
||||
# 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 = true
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue