-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
120 lines (112 loc) · 3.47 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
baseURL = "/"
theme = "hugo-apero"
languageCode = "en"
title = "Hugo Apéro"
author = "Alison Hill"
copyright = "" # set to override the auto generated copyright using org info and now year
googleAnalytics = ""
disqusShortname = ""
metaDataFormat = "yaml"
footnoteReturnLinkContents = "↩" # ↩
# set deliberately low for testing choose your prefered number based on the blog layout you've chosen
paginate = 5
preserveTaxonomyNames = true
ignoreFiles = ["\\.Rmd$", "\\.Rmarkdown$", "_cache$", "\\.knit\\.md$", "\\.utf8\\.md$"]
enableEmoji = true
[markup]
defaultMarkdownHandler = "goldmark"
[markup.goldmark.renderer]
unsafe = true # Enable user to embed HTML snippets in Markdown content.
hardwraps = false
[markup.tableOfContents]
startLevel = 2
endLevel = 2
ordered = false
[markup.highlight]
# one of: https://xyproto.github.io/splash/docs/
style = "github"
[params]
orgName = "RStudio"
orgLocal = "Anywhere"
description = "A modern, beautiful, and easily configurable blog theme for Hugo."
favicon = "/img/favicon.ico"
logo = "/img/blogophonic-mark-dark.png"
# select sections to highlight on about page
mainSections = ["blog", "project", "talk"]
show_social_links = true
navallcaps = true
# Default image for social sharing and search engines.
# Place image file in `static` folder and specify image name here.
sharing_image = "/img/papillons.jpg"
# Twitter username (without @). Used when a visitor shares your site on Twitter.
twitter = "apreshill"
# basic font options: sans-serif or serif
# for more http://tachyons.io/docs/typography/font-family/
textFontFamily = "sans-serif"
headingFontFamily = "sans-serif"
# alternatively, use a built-in font-family
# serif options: Fraunces / EB Garamond / Bitter
# sans-serif options: Commissioner / Alegreya Sans / Metropolis
customtextFontFamily = "Commissioner"
customheadingFontFamily = "Fraunces"
# use a built-in color theme
# one of: forest / grayscale / peach / plum /
# poppy / sky / violet / water
theme = "sky"
# or, leave theme empty & make your own palette
# basic color options: use only color names as shown in the
# "Color Palette" section of http://tachyons.io/docs/themes/skins/
siteBgColor = "near-white"
sidebarBgColor = "light-gray"
headlineColor = "dark-pink"
headingColor = "near-black"
textColor = "dark-gray"
sidebarTextColor = "mid-gray"
bodyLinkColor = "blue"
navLinkColor = "near-black"
sidebarLinkColor = "near-black"
footerTextColor = "silver"
buttonTextColor = "near-white"
buttonBgColor = "black"
buttonHoverTextColor = "white"
buttonHoverBgColor = "blue"
borderColor = "moon-gray"
# show/hide social icons in site header/footer/home page
socialInHeader = false
socialInFooter = true
socialInHome = true
[taxonomies]
category = "categories"
series = "series"
tag = "tags"
[menu]
[[menu.header]]
name = "About"
title = "About Blogophonic"
url = "/about/"
weight = 1
[[menu.header]]
name = "Blog"
title = "Blog"
url = "/blog/"
weight = 2
[[menu.header]]
name = "Projects"
title = "Project Portfolio"
url = "/project/"
weight = 3
[[menu.header]]
name = "Talks"
title = "Talks"
url = "/talk/"
weight = 4
[[menu.header]]
name = "A collection"
title = "A collection"
url = "/collection/"
weight = 5
[[menu.header]]
name = "Elements"
title = "Element Page"
url = "/elements/"
weight = 6