-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.toml
177 lines (136 loc) · 3.89 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
165
166
167
168
169
170
171
172
173
174
175
176
177
baseurl = "http://ropengov.org/"
title = "rOpenGov R packages for open government data analytics"
languageCode = "en-us"
#defaultContentLanguage = "en"
googleAnalytics = ""
disqusShortname = "ropengovorg"
ignoreFiles = ["\\.Rmd$", "\\.Rmarkdown$", "_cache$", "\\.knit\\.md$", "\\.utf8\\.md$"]
# Pagination
paginate = 6
paginatePath = "page"
# Theme to use
theme = "hugo-bootstrap"
[taxonomies]
tag = "tags"
category = "categories"
# Google analytics
googleAnalytics = "44262937"
[[menu.main]]
name = "GitHub"
url = "https://github.com/ropengov/"
[[menu.main]]
name = "Twitter"
url = "https://twitter.com/ropengov"
[languages]
[languages.en]
languageName = "English"
# Replace the default footer message with a localized message
# copyright = "Hugo template made with ❤ by Xzya"
[[languages.en.menu.main]]
url = "/"
name = "Home"
weight = 1
# [[languages.en.menu.main]]
# url = "/about/"
# name = "About"
# weight = 2
[[languages.en.menu.main]]
url = "/post/"
name = "Blog"
weight = 2
[[languages.en.menu.main]]
url = "/projects/"
name = "Projects"
weight = 3
[[languages.en.menu.main]]
url = "/community/"
name = "Community"
weight = 4
[[languages.en.menu.main]]
url = "/index.xml"
name = "RSS-feed"
weight = 5
[languages.fi]
languageName = "Suomi"
[[languages.fi.menu.main]]
url = "/"
name = "Etusivu"
weight = 1
# [[languages.fi.menu.main]]
# url = "/about/"
# name = "Lisätietoja"
# weight = 2
[[languages.fi.menu.main]]
url = "/fi/post/"
name = "Blogi"
weight = 2
[[languages.fi.menu.main]]
url = "/projects/"
name = "Projektit"
weight = 3
[[languages.fi.menu.main]]
url = "/community/"
name = "Yhteisö"
weight = 4
[[languages.fi.menu.main]]
url = "/fi/index.xml"
name = "RSS-syöte"
weight = 5
# Links format
[permalinks]
post = "/:year/:month/:slug/"
[params]
# Main sections (currently used for the recent posts in the sidebar)
mainSections = ["post"]
# Default author
# author = "John Doe"
# Date format (default: Jan 2, 2006)
# date_format = "Jan 2, 2006"
# Display post summaries instead of content in list templates (default: true)
# truncate = false
description = "rOpenGov is a community of R package developers on open government data analytics and related topics"
# options for highlight.js (version, additional languages, and theme)
highlightjsVersion = "9.12.0"
highlightjsCDN = "//cdnjs.cloudflare.com/ajax/libs"
highlightjsLang = ["r", "yaml"]
highlightjsTheme = "github"
MathJaxCDN = "//cdnjs.cloudflare.com/ajax/libs"
MathJaxVersion = "3.0.0"
# path to the favicon, under "static"
favicon = "favicon.ico"
customJS = ["https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/languages/r.min.js"]
[params.sidebar]
# Whether to show the recent posts or not (default: true)
showRecent = true
# Whether to show the taxonomies or not (default: true)
showTaxonomy = true
# Manually configured URLs to external sites
showLinks = true
# How many posts to show on the sidebar (Default: 5)
num_recent_posts = 5
[params.logo]
url = "images/logo2020_black_orange.svg"
width = 50
#height = 50
alt = "rOpenGov"
[params.header]
# Color scheme for the header (default: "light")
colorScheme = "dark"
[params.footer]
# Color scheme for the footer (default: "light")
# colorScheme = "dark"
[markup]
[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 = 'tango'
tabWidth = 4