website/config.toml
2023-10-19 01:04:39 +02:00

96 lines
2.6 KiB
TOML

# The URL the site will be built for
base_url = "https://www.snamellit.com"
# 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 = "blow"
taxonomies = [
{ name="tags", feed=true },
{ name="categories", feed=true },
]
[markdown]
# Whether to do syntax highlighting
# Theme can be customised by setting the `highlight_theme` variable to a theme supported by Zola
highlight_code = true
[extra]
enable_search = true
enable_sidebar = true
enable_adsense = true
enable_multilingue = true
adsense_link = "https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=myclientid"
[extra.lang]
items = [
{ lang = "en", links = [
{ base_url = "/", name = "English" },
# { base_url = "/fr", name = "French" },
] },
#{ lang = "fr", links = [
# { base_url = "/", name = "Anglais" },
# { base_url = "/fr", name = "Français" },
# ] },
]
[extra.navbar]
items = [
{ lang = "en", links = [
{ url = "/", name = "Home" },
{ url = "/categories", name = "Categories" },
{ url = "/tags", name = "Tags" },
]},
# { lang = "fr", links = [
# { url = "/fr", name = "Accueil" },
# { url = "/fr/categories", name = "Categories" },
# { url = "/fr/tags", name = "Tags" },
# ] },
]
title = "Snamellit"
[extra.sidebar]
items = [
{ lang = "en", links = [
#{ url = "/markdown", name = "Markdown" },
{ url = "/blog", name = "Blog" },
] },
# { lang = "fr", links = [
# { url = "/fr/markdown", name = "Markdown" },
# { url = "/fr/blog", name = "Blog" },
# ] },
]
# Index page
[extra.index]
title = "Snamellit BV"
image = "/images/mugshot.jpg"
image_alt = "Profile picture"
[extra.default_author]
name = "Peter Tillemans"
avatar = "/images/mugshot.jpg"
avatar_alt = "Profile picture"
[extra.social]
github = "https://github.com/ptillemans"
gitlab = "https://gitlab.com/ptillemans"
twitter = ""
mastodon = "https://social.snamellit.com/users/snamellit"
linkedin = "https://www.linkedin.com/in/ptillemans/"
stackoverflow = "https://stackoverflow.com/users/350890/peter-tillemans"
email = "pti@snamellit.com"
telegram = "https://t.me/snamellit"
[extra.favicon]
favicon = "/icons/favicon.ico"
favicon_16x16 = "/icons/favicon-16x16.png"
favicon_32x32 = "/icons/favicon-32x32.png"
apple_touch_icon = "/icons/apple-touch-icon.png"
android_chrome_512 = "/icons/android-chrome-512x512.png"
android_chrome_192 = "/icons/android-chrome-192x192.png"
manifest = "/icons/site.webmanifest"