mirror of
https://github.com/welpo/tabi.git
synced 2025-10-10 23:38:53 +02:00
first commit
This commit is contained in:
commit
0b117d1641
89 changed files with 1457 additions and 0 deletions
36
config.toml
Normal file
36
config.toml
Normal file
|
@ -0,0 +1,36 @@
|
|||
# Necessary stuff.
|
||||
base_url = "https://welpo.github.io/tabi"
|
||||
title = "~/tabi"
|
||||
description = "tabi is a simple personal site and blogging theme for Zola."
|
||||
generate_feed = true
|
||||
compile_sass = true
|
||||
minify_html = true
|
||||
|
||||
taxonomies = [
|
||||
{name = "tags", feed = true},
|
||||
]
|
||||
|
||||
[markdown]
|
||||
highlight_code = true
|
||||
highlight_theme = "ayu-dark"
|
||||
|
||||
[extra]
|
||||
toc = true
|
||||
use_cdn = false
|
||||
|
||||
#Full path after the base URL required. So if you were to place it in "static" it would be "/favicon.ico"
|
||||
favicon = ""
|
||||
|
||||
#This header image is used for SEO. For example if you were to share an image via Messenger/Instagram/Twitter a preview picture is also presented
|
||||
headerImage = ""
|
||||
|
||||
# The icon is display besides the menu text but is not necessary. It needs to be placed under "menu_icon" in the static "folder"
|
||||
menu = [
|
||||
{ name = "home", url = "/", weight = 1},
|
||||
{ name = "tags", url = "/tags", weight = 1 },
|
||||
{ name = "projects", url = "/projects", weight = 1 },
|
||||
]
|
||||
#The icons available can be found in "social_icons" in the "static" folder
|
||||
socials = [
|
||||
{ name = "github", url = "https://github.com/welpo/", icon = "github" },
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue