mirror of
https://github.com/SebastianStork/kita.git
synced 2026-01-21 12:11:35 +01:00
docs: update docs
This commit is contained in:
parent
d7d6e69130
commit
43911ffe82
8 changed files with 315 additions and 140 deletions
36
config.toml
36
config.toml
|
|
@ -42,6 +42,17 @@ extra_syntaxes_and_themes = []
|
|||
# See below for list of allowed values.
|
||||
highlight_theme = "base16-ocean-dark"
|
||||
|
||||
# The Kita theme style config.
|
||||
[extra]
|
||||
# Enable KaTex math formula support globally.
|
||||
math = false
|
||||
# Enable mermaid support globally.
|
||||
mermaid = false
|
||||
# Enable comment support globally.
|
||||
comment = false
|
||||
# Disable the post navigation.
|
||||
disable_post_navigation = false
|
||||
|
||||
[extra.style]
|
||||
# The custom background color.
|
||||
# bg_color = ""
|
||||
|
|
@ -52,18 +63,22 @@ highlight_theme = "base16-ocean-dark"
|
|||
# Enable header blur.
|
||||
# header_blur = true
|
||||
|
||||
# The custom header color.
|
||||
# The custom header color, only available when `header_blur` is false.
|
||||
# header_color = ""
|
||||
|
||||
# The custom header color in dark mode.
|
||||
# The custom header color in dark mode, only available when `header_blur` is false.
|
||||
# header_dark_color = ""
|
||||
|
||||
# The profile on home page.
|
||||
[extra.profile]
|
||||
name = "Kita - Zola Theme"
|
||||
bio = "Kita is a clean, elegant and simple blog theme for Zola."
|
||||
# The URL of avatar.
|
||||
avatar_url = "icons/github.svg"
|
||||
# Invert color in dark mode.
|
||||
avatar_invert = true
|
||||
|
||||
# The social icons below the profile on the home page.
|
||||
[[extra.profile.social]]
|
||||
name = "github"
|
||||
url = "https://github.com/st1020/kita"
|
||||
|
|
@ -76,6 +91,7 @@ url = "https://github.com/st1020/kita"
|
|||
name = "rss"
|
||||
url = "$BASE_URL/atom.xml"
|
||||
|
||||
# The top menu.
|
||||
[[extra.menu]]
|
||||
name = "Projects"
|
||||
url = "$BASE_URL/projects"
|
||||
|
|
@ -92,7 +108,23 @@ url = "$BASE_URL/tags"
|
|||
name = "About"
|
||||
url = "$BASE_URL/about"
|
||||
|
||||
# The page footer options.
|
||||
[extra.footer]
|
||||
since = 2020
|
||||
license = "CC BY-SA 4.0"
|
||||
license_url = "https://creativecommons.org/licenses/by-sa/4.0/deed"
|
||||
|
||||
# The giscus comment options, only available when comment is enabled.
|
||||
[extra.giscus]
|
||||
repo = ""
|
||||
repo_id = ""
|
||||
category = ""
|
||||
category_id = ""
|
||||
mapping = "pathname"
|
||||
strict = 1
|
||||
reactions_enabled = 0
|
||||
emit_metadata = 0
|
||||
input_position = "top"
|
||||
theme = "light"
|
||||
lang = "en"
|
||||
loading = "lazy"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue