forked from rbind/blogdown-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
53 lines (44 loc) · 1.18 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
baseurl = "https://blogdown-demo.rbind.io/"
languageCode = "en-us"
title = "A minimal example website using blogdown"
theme = "hugo-lithium-theme"
googleAnalytics = ""
disqusShortname = ""
ignoreFiles = ["\\.Rmd$", "\\.Rmarkdown$", "_files$", "_cache$"]
enableEmoji = true
[outputs]
home = [ "HTML", "CSS", "RSS" ]
section = [ "HTML", "RSS" ]
[permalinks]
post = "/:year/:month/:day/:slug/"
[[menu.main]]
name = "About"
url = "/about/"
weight = 1
[[menu.main]]
name = "GitHub"
url = "https://github.com/rbind/blogdown-demo"
weight = 2
[[menu.main]]
name = "Book"
url = "/book/"
weight = 3
[[menu.main]]
name = "Twitter"
url = "https://twitter.com/rstudio"
weight = 4
[params]
description = "A website built through Hugo and blogdown."
customCSS = ["css/custom.css"]
# options for highlight.js (version, additional languages, and theme)
highlightjsVersion = "9.11.0"
highlightjsCDN = "//cdn.bootcss.com"
highlightjsLang = ["r", "yaml"]
highlightjsTheme = "github"
MathJaxCDN = "//cdn.bootcss.com"
MathJaxVersion = "2.7.1"
[params.logo]
url = "logo.png"
width = 50
height = 50
alt = "Logo"