-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
99 lines (79 loc) · 3.06 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# The URL the site will be built for
base_url = "https://www.richtman.au"
theme = "tabi"
title = "richtman.au"
description = "Platform Engineering, Cloud, DevOps, and all things facilitative infrastructure"
generate_feeds = true
# Don't publish development infrastructure to the website
ignored_content = [ "flake.*", ".pymarkdown.json", ".pre-commit-config.yaml", "*.lock", ".git*", "renovate.json5", "pyproject.toml" ]
# Whether to automatically compile all Sass files in the sass directory
compile_sass = true
# Lighter weight
minify_html = true
# Whether to build a search index to be used later on by a JavaScript library
build_search_index = true
taxonomies = [
{ name = "categories", feed = true, paginate_by = 10 },
{ name = "tags", fees = true, paginate_by = 10 },
]
[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 = "monokai"
external_links_target_blank = true
render_emoji = true
[link_checker]
# I was thinking to run zola check but cba tbh
# internal_level = "warn"
# Skip link checking for external URLs that start with these prefixes
skip_prefixes = [
"http://[2001:db8::]/",
]
[slugify]
paths = "on"
taxonomies = "on"
anchors = "on"
[search]
# Whether to include the title of the page/section in the index
include_title = true
# Whether to include the description of the page/section in the index
include_description = false
# Whether to include the path of the page/section in the index
include_path = false
# Whether to include the rendered content of the page/section in the index
include_content = true
[extra]
theme_switcher = true
skin = "indigo_ingot"
feed_icon = true
remote_repository_url = "https://github.com/arichtman/www.richtman.au"
favicon = "images/caricature.jpg"
menu = [
{ url = "", name = "Home" },
{ url = "blog", name = "Blog" },
{ url = "docs", name = "Docs" },
{ url = "nomicon", name = "Nomicon" },
{ url = "tags", name = "Tags" },
{ url = "categories", name = "Categories" },
]
email = "aGVsbG9AcmljaHRtYW4uYXUK"
socials = [
{ name = "Fediverse", url = "https://eigenmagic.net/@arichtman", icon = "mastodon"},
{ name = "GitHub", url = "https://github.com/arichtman", icon = "github"},
{ name = "GitLab", url = "https://gitlab.com/arichtman", icon = "gitlab"},
{ name = "StackOverflow", url = "https://stackoverflow.com/users/19531788", icon = "stack-overflow"},
{ name = "StackExchange", url = "https://stackexchange.com/users/25787203", icon = "stack-exchange"},
{ name = "KeyBase", url = "https://keybase.io/arichtman", icon = "keybase"},
# Keep a template one
# { name = "", url = "", icon = ""},
]
FediverseCreator = { handle = "arichtman", domain = "eigenmagic.net" }
allowed_domains = [
{ directive = "font-src", domains = ["'self'", "data:"] },
{ directive = "img-src", domains = ["'self'", "data:"] },
{ directive = "style-src", domains = ["'unsafe-inline'"] },
]
[extra.analytics]
service = "umami"
id = "aeb4024a-facb-4e4e-814d-2cdf131d453b"