-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
85 lines (69 loc) · 1.68 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
baseURL = "http://j3rn.com/"
languageCode = "en-us"
defaultContentLanguage = "en"
title = "J3RN's Blog"
theme = "congo"
[social]
github = "https://github.com/J3RN"
mastodon = "https://fosstodon.org/J3RN"
[outputs]
home = ["HTML", "RSS", "JSON"]
[params]
description = "My technical blog where I write about Ruby, Elixir, software architecture, software development methodologies, and programming language design."
enableRSS = true
colorScheme = "congo"
header.logo = "avatar.png"
enableSearch = true
# Doesn't work
# enableCodeCopy = true
[params.author]
name = "Jonathan Arnett"
image = "images/avatar.png"
links = [
{ mastodon = "https://fosstodon.org/@j3rn" }
]
[params.footer]
showAppearanceSwitcher = true
[params.plausibleAnalytics]
domain = "j3rn.com"
[params.homepage]
layout = "custom"
showRecent = true
[params.article]
showDate = true
showAuthor = false
dateFormat = "2006-01-02"
# Interesting idea; ignoring for now
# showEdit = true
# editURL = "https://github.com/J3RN/blog/edit/master/content/"
showTaxonomies = true
# sharingLinks = ["twitter", "reddit", "linkedin"]
[params.list]
showTaxonomies = true
# Required me to change Congo and even so made the list look cluttered
# showSummary = true
[params.page]
showDate = false
[markup.goldmark.renderer]
unsafe = true
[markup.highlight]
style='doom-one'
[[menus.main]]
name = "{{<icon \"rss\" >}}"
title = "RSS Feed"
url = "/index.xml"
weight = 10
[[menus.main]]
name = "{{< icon \"mastodon\" >}}"
title = "@J3RN on Fosstodon (a Mastodon server)"
url = "https://fosstodon.org/@j3rn"
weight = 20
params.rel = "me"
[[menus.main]]
name = "Portfolio"
pageRef = "portfolio"
weight = 25
[[menus.main]]
name = "Tags"
pageRef = "tags"
weight = 30