-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
55 lines (45 loc) · 1.65 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
# The URL the site will be built for
base_url = "https://goodpals.dev"
theme = "hermit_zola"
# Whether to automatically compile all Sass files in the sass directory
compile_sass = true
# Whether to build a search index to be used later on by a JavaScript library
build_search_index = 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
[extra]
home_subtitle = "Three pals who write code"
footer_copyright = ' · <a href="https://creativecommons.org/licenses/by-nc/4.0/" target="_blank" rel="noopener">CC BY-NC 4.0</a>'
pals = [
{ name = "Alex Baker", links = [
{ name = "website", link = "https://alxbkr.xyz" },
{ name = "github", link = "https://github.com/alexobviously" }
]},
{ name = "Callum Beaney", links = [
{ name = "website", link = "https://callumbeaney.github.io/" },
{ name = "github", link = "https://github.com/CallumBeaney" }
]},
{ name = "Steve Beville", links = [
{ name = "github", link = "https://github.com/TheBeville" }
]}
]
hermit_menu = [
# { link = "/posts", name = "Posts" },
# { link = "/about", name = "About" }
]
hermit_social = [
# { name = "twitter", link = "https://twitter.com" },
# { name = "github", link = "https://github.com" },
# { name = "email", link = "mailto:[email protected]" },
# { name = "web", link = "https://goodpals.dev" },
# {name="mastodon", link="https://fosstodon.org/@jauska"}
]
[extra.highlightjs]
enable = true
clipboard = true
theme = "vs2015"
[extra.author]
name = "Goodpals"
email = "[email protected]"