mirror of
https://github.com/house-of-vanity/house-of-vanity.github.io.git
synced 2025-07-07 16:54:06 +00:00
Zola init
This commit is contained in:
74
config.toml
Normal file
74
config.toml
Normal file
@ -0,0 +1,74 @@
|
||||
# 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]
|
||||
|
||||
# control dark mode: auto | dark | toggle
|
||||
mode = "toggle"
|
||||
|
||||
# interal CDN resource
|
||||
useCDN = false
|
||||
|
||||
favicon = "/icon/favicon.png"
|
||||
|
||||
copyright = "ultradesu"
|
||||
|
||||
#ga = "G-6YGDB8SLBT"
|
||||
|
||||
[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 },
|
||||
]
|
||||
|
||||
# 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"
|
||||
|
Reference in New Issue
Block a user