mirror of
https://github.com/house-of-vanity/house-of-vanity.github.io.git
synced 2025-07-06 08:24:08 +00:00
86 lines
2.0 KiB
TOML
86 lines
2.0 KiB
TOML
# The URL the site will be built for
|
|
base_url = "//btwiusearch.net"
|
|
|
|
# The site title and description; used in feeds by default.
|
|
title = "btwiusearch.net"
|
|
description = "My own small public place"
|
|
|
|
# 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 = false
|
|
|
|
taxonomies = [{ name = "tags" }]
|
|
|
|
default_language = "en"
|
|
|
|
[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
|
|
|
|
highlight_theme = "demain"
|
|
|
|
[extra]
|
|
|
|
version = "2.6"
|
|
|
|
tag = "LOCAL"
|
|
|
|
# control dark mode: auto | dark | toggle
|
|
mode = "toggle"
|
|
|
|
# interal CDN resource
|
|
useCDN = false
|
|
|
|
favicon = "/icon/favicon.png"
|
|
|
|
copyright = "ultradesu"
|
|
|
|
ga = "G-ZQB83ET6VX"
|
|
|
|
meta = [
|
|
{property = "og:title", content = "BTWIUSEARCH.net"},
|
|
{property = "og:image", content = "imgs/webview.png"},
|
|
{property = "og:description", content = "Self-hosting adventures"},
|
|
]
|
|
|
|
[extra.translations]
|
|
languages = [{name = "en", url = "/"}]
|
|
|
|
[[extra.translations.en]]
|
|
show_more = "Read more ⟶"
|
|
previous_page = "← Previous"
|
|
next_page = "Next →"
|
|
posted_on = "on "
|
|
posted_by = "Published by"
|
|
read_time = "minute read"
|
|
all_tags = "All tags"
|
|
menus = [
|
|
{ name = "Home", url = "/", weight = 2 },
|
|
{ name = "All posts", url = "/posts", weight = 2 },
|
|
{ name = "About", url = "/about", weight = 3 },
|
|
{ name = "Tags", url = "/tags", weight = 4 },
|
|
{ name = "Private Arch Linux repo", url = "/arch_repo/", weight = 3 },
|
|
]
|
|
|
|
# config social icon info in the footer
|
|
[[extra.social]]
|
|
icon = "github"
|
|
name = "GitHub"
|
|
url = "https://github.com/house-of-vanity"
|
|
[[extra.social]]
|
|
icon = "send"
|
|
name = "Telegram"
|
|
url = "tg:@ultradesu"
|
|
[[extra.social]]
|
|
icon = "linkedin"
|
|
name = "LinkedIn"
|
|
url = "https://www.linkedin.com/in/alexandr-bogomyakov-732a8a73"
|
|
[[extra.social]]
|
|
icon = "at-sign"
|
|
name = "E-Mail"
|
|
url = "mailto:ab@hexor.cy"
|
|
|