-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
57 lines (50 loc) · 1.49 KB
/
config.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# The URL the site will be built for
base_url = "https://mhpark.me"
title = "Mike's Blog"
description = "The personal, rarely updated, blog of Michael Park"
# Whether to automatically compile all Sass files in the sass directory
compile_sass = true
compile_feed = true
generate_feed = true
feed_filename = "atom.xml"
# When set to "true", the generated HTML files are minified.
minify_html = true
# Whether to build a search index to be used later on by a JavaScript library
build_search_index = true
theme = "DeepThought"
taxonomies = [
# You can enable/disable RSS
{name = "categories", feed = true},
{name = "tags", 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
highlight_theme = "ayu-dark"
[extra]
katex.enabled = true
katex.auto_render = true
chart.enabled = true
mermaid.enabled = true
galleria.enabled = true
navbar_items = [
{ code = "en", nav_items = [
{url = "$BASE_URL", name = "Home"},
{url = "$BASE_URL/posts", name = "Posts"},
{url = "$BASE_URL/about-me", name = "About Me"},
{url = "$BASE_URL/categories", name = "Categories"},
{url = "$BASE_URL/tags", name = "Tags"},
]},
]
[extra.author]
name = "Michael Park"
avatar = "me512.png"
# Social links
[extra.social]
email = "[email protected]"
github = "KingMichaelPark"
keybase = "mparkypark"
linkedin = "michael-h-park"
mastodon_username = "mdawg"
mastodon_server = "fosstodon.org"