-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfig.toml
56 lines (49 loc) · 1.67 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
# https://www.getzola.org/documentation/getting-started/configuration/
base_url = "https://blahcat.github.io"
title = "BlahCats Blog"
description = "Tales of a binary encoded life..."
theme = "zola-clean-blog"
generate_feeds = true
feed_filenames = ["atom.xml", "rss.xml"]
author = "hugsy"
compile_sass = true
build_search_index = true
minify_html = true
taxonomies = [
{ name = "categories", rss = true, paginate_by = 10 },
{ name = "tags", rss = true, paginate_by = 10 },
{ name = "authors" },
]
[markdown]
highlight_code = true
highlight_theme = "base16-ocean-dark" # https://www.getzola.org/documentation/getting-started/configuration/#syntax-highlighting
render_emoji = true
bottom_footnotes = true
smart_punctuation = true
external_links_target_blank = true
external_links_no_follow = true
external_links_no_referrer = true
[slugify]
paths = "on"
taxonomies = "on"
anchors = "on"
paths_keep_dates = true
[link_checker]
internal_level = "error"
external_level = "warn"
[extra]
clean_default_bg_cover = "/img/blog-cover.png"
clean_blog_menu = [
{ url = "$BASE_URL", name = "Home" },
{ url = "$BASE_URL/series", name = "Series" },
{ url = "$BASE_URL/notes", name = "Notes" },
{ url = "$BASE_URL/about", name = "About" },
{ url = "$BASE_URL/qemu", name = "Qemu VMs" },
]
clean_blog_social = [
{ icon = "fas fa-rss", url = "$BASE_URL/atom.xml" },
{ icon = "fab fa-twitter", url = "https://twitter.com/ctf_blahcat" },
{ icon = "fab fa-github", url = "https://github.com/blahcat" },
{ icon = "fab fa-youtube", url = "https://www.youtube.com/channel/UCDrgY65mRZWVoMiB5-VMqfg" },
{ icon = "fab fa-discord", url = "https://discord.gg/hSbqxxBgRX" },
]