-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
140 lines (121 loc) · 3.46 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
baseurl = "https://tonisagrista.com"
languageCode = "en-gb"
title = "Langur Monkey - Toni Sagristà Sellés"
theme = "langurmonkey"
preserveTaxonomyNames = true
enableRobotsTXT = true
canonifyURLs = true
relativeurls = true
uglyurls = false
enableGitInfo = true
[frontmatter]
# Use article lastmod, otherwise use git
lastmod = ["lastmod", ":git", "date", "publishDate"]
[pagination]
pagerSize = 6
[outputs]
home = ["HTML", "RSS", "JSON"]
[taxonomies]
tag = "tags"
category = "categories"
[services.RSS]
limit = 15
[params]
# Sets the meta tag description, usually reserved for the main page
description = "Personal website and portfolio"
# This will appear on the top left of the navigation bar
navbarTitle = "langur@monkey"
# Social media buttons that appear in the footer
socialAppearAtBottom = true
# Sets where 'View more posts' links
viewMorePostLink = "/blog"
# Optional Params
categoriesByCount = true
tagsByCount = true
includeReadingTime = true
# Please see the favicon partial template for more information
loadFavicon = true
faviconVersion = ""
# Load custom CSS or JavaScript files. This replaces the deprecated params
# minifiedFilesCSS and minifiedFilesJS. The variable is an array so that you
# can load multiple files if necessary. You can also load the standard theme
# files by adding the value, "default".
customcss = ["/css/site-bundle.css"]
customjs = ["/js/site-bundle.js"]
# Set up your menu items in the navigation bar
# You can use identifier to prepend a font awesome icon to your text
[[menu.main]]
name = "~/blog"
url = "/blog"
weight = 2
[[menu.main]]
name = "~/projects"
url = "/projects"
weight = 3
[[menu.main]]
name = "~/publications"
url = "/papers"
weight = 4
[[menu.main]]
name = "~/cv"
url = "/resume"
weight = 5
[[menu.main]]
name = "~/photo"
url = "/photography"
weight = 6
[[menu.main]]
name = "~/search"
url = "/search"
weight = 7
# These go in the footer
[social]
rss = "index.xml"
codeberg = "langurmonkey"
#gitlab = "langurmonkey"
mastodon = "@[email protected]"
mastodont = "@[email protected]"
pixelfed = "@jumpinglangur"
lbry = "@GaiaSky"
email = "[email protected]"
pgp = "0x2FD2A59C1D734C1F"
[markup]
# code highlight with chroma
[markup.highlight]
anchorLineNos = false
codeFences = true
guessSyntax = false
hl_Lines = ''
hl_inline = false
lineAnchors = ''
lineNoStart = 1
lineNos = false
lineNumbersInTable = true
noClasses = true
noHl = false
style = 'hrdark'
tabWidth = 4
# Properties of the markdown render engine (goldmark)
[markup.goldmark]
[markup.goldmark.tableOfContents]
endLevel = 3
ordered = false
startLevel = 2
[markup.goldmark.extensions]
definitionList = true
footnote = true
linkify = true
strikethrough = true
table = true
taskList = true
typographer = true
[markup.goldmark.parser]
autoHeadingID = true
autoHeadingIDType = "github"
[markup.goldmark.parser.attribute]
block = false
title = true
[markup.goldmark.renderer]
hardWraps = false
unsafe = true
xhtml = false