-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
87 lines (75 loc) · 2.6 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
baseurl = "/"
languageCode = "en-us"
title = "A data and technology blog"
theme = "hugo-lithium"
enableEmoji = true
googleAnalytics = "UA-21866883-2"
disqusShortname = "msaliciabrown-com"
ignoreFiles = ["\\.Rmd$", "\\.Rmarkdown$", "_files$", "_cache$"]
[permalinks]
post = "/:year/:month/:day/:slug/"
# colors: https://github.com/karthik/wesanderson#the-darjeeling-limited-2007-
[[menu.main]]
name = " "
identifier = "home"
pre = "<span title='blog posts' style='color: DodgerBlue;'><i class='fas fa-feather fa-lg'></i></span>"
url = "/"
weight = 1
[[menu.main]]
name = " "
identifier = "data"
pre = "<span title='data vizes' style='color: DodgerBlue;'><i class='fas fa-chart-line fa-lg'></i></span>"
url = "/data"
weight = 2
[[menu.main]]
name = " "
identifier = "github"
pre = "<span title='code repo' style='color: DodgerBlue;'><i class='fab fa-github fa-lg'></i></span>"
url = "https://github.com/aliciatb/"
weight = 3
[[menu.main]]
name = " "
identifier = "linkedin"
pre = "<span title='linked in profile' style='color: DodgerBlue;'><i class='fab fa-linkedin fa-lg'></i></span>"
url = "https://www.linkedin.com/in/aliciabrown"
weight = 4
[[menu.main]]
name = " "
identifier = "doctorate-program"
pre = "<span title='research' style='color: DodgerBlue;'><i class='fas fa-university fa-lg'></i></span>"
url = "https://commons.royalroads.ca/dsocsciprogrampage/alicia-brown/"
weight = 5
[[menu.main]]
name = " "
identifier = "research"
pre = "<span title='research' style='color: DodgerBlue;'><i class='fas fa-pen fa-lg'></i></span>"
url = "/research/"
weight = 6
[[menu.main]]
name = " "
identifier = "about"
pre = "<span title='about me' style='color: DodgerBlue;'><i class='fas fa-info-circle fa-lg'></i></span>"
url = "/about/"
weight = 7
[params]
description = "A website built through Hugo and blogdown."
customCSS = ["css/tables.css"]
# 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 = "2.7.5"
# path to the favicon, under "static"
favicon = "favicon.ico"
[params.logo]
url = "logo.png"
width = 50
height = 50
alt = "Logo"
[markup]
defaultMarkdownHandler = "goldmark"
[markup.goldmark]
[markup.goldmark.renderer]
unsafe = true # Enable user to embed HTML snippets in Markdown content.