-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
164 lines (130 loc) · 3.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
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
# hostname (and path) to the root
publishDir = "docs"
baseurl = "https://tlverse.org"
# ignore files
ignoreFiles = ["\\.Rmd$", "\\.Rmarkdown$", "_files$", "_cache$"]
# english language only
languageCode = "en"
# SES friendly url:s
canonifyurls = true
# Frontmatter format
# "yaml", "toml", "json"
metaDataFormat = "toml"
# Theme to use (located in /themes/THEMENAME/)
theme = "hugo-bootstrap-premium"
# Pagination
paginate = 10
paginatePath = "page"
[permalinks]
post = "/:year/:month/:day/:filename/"
code = "/:filename/"
[taxonomies]
tag = "tags"
topic = "topics"
[author]
name = "Jeremy Coyle"
email = "[email protected]"
[params]
# bootswatch theme name, unmark and select one: cerulean, cosmo, cyborg, darkly,
# default, flatly, journal, lumen, paper, readable, sandstone, simplex,
# slate, spacelab, superhero, united, yeti.
bootswatchtheme = "flatly"
# menu for changing language. This changes languages with js and stores the choice with the help of JavaScript in a Cookie. Then the path is rewritten with pathnamereplace.js. The name of the md files needs to have the same name for each language abbreviation to work correctly. Example: showcase.en.md and showcase.sv.md. It only works if DefaultContentLanguageInSubdir = true
switchlang = false
# You can use markdown here.
BrandImage = "images/tlverse-logo.png" #top header brand image.
brand = "tlverse" # brand image alt text.
topline = "It's not tidy, but it's targeted!"
footline = ""
customJS = []
customCSS = ["/css/style_custom.css"]
# Text for the top menu link, which goes to the root URL for the site.
home = "tlverse"
# Show a sidebar menu
showRightSidebar = false
# Select a syntax highlight.
# Check the static/css/highlight directory for options.
highlight = "default"
# Google Analytics.
googleAnalytics = "Your Google Analytics tracking code"
# Sidebar social links.
github = "tlverse" # Your Github profile ID
[blackfriday]
angledQuotes = true
fractions = false
hrefTargetBlank = false
latexDashes = true
plainIdAnchors = true
extensions = []
extensionmask = []
# Menus
# If you want active menu items highlighted for internal pages don't add them here, they need to be added in each files front matter.
# like this:
#[menu]
# [menu.main]
# name = "Showcase"
# weight = 3
# identifier = "showcase"
# i18n menus. A menu will be added for each language to the right in the top menu. This menu will switch to the selected language. Remember to add the corresponding language in pathnamereplace.js.
#[[Languages.sv.menu.switchlang]]
# name = "English"
# identifier = ""
# weight = 4
# url = "en"
[Languages]
[Languages.en]
languageCode = "en"
weight = 1
copyright = "(c) 2018"
title = "tlverse" # Site title
# main menu
[[Languages.en.menu.main]]
name = "sl3"
weight = 1
identifier = ""
url = "https://tlverse.org/sl3/"
pre = ""
[[Languages.en.menu.main]]
name = "tmle3"
weight = 2
identifier = ""
url = "https://tlverse.org/tmle3/"
pre = ""
[[Languages.en.menu.main]]
name = "delayed"
weight = 3
identifier = ""
url = "https://tlverse.org/delayed/"
pre = ""
[[Languages.en.menu.main]]
name = "origami"
weight = 4
identifier = ""
url = "https://tlverse.org/origami/"
pre = ""
[[Languages.en.menu.main]]
name = "hal9001"
weight = 4
identifier = ""
url = "https://tlverse.org/hal9001/"
pre = ""
# right menu
[[Languages.en.menu.right]]
name = "blog"
weight = 1
identifier = ""
url = "/post/"
pre = ""
[[Languages.en.menu.right]]
name = "github"
weight = 2
identifier = ""
url = "https://github.com/tlverse/"
pre = ""
# footer menu
# [[Languages.en.menu.footer]] # add links to the bottom right corner.
# name = "Disclaimer"
# pre = "<i>·</i>"
# identifier = "disclaimer"
# weight = 1
# url = "/disclaimer/"