-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
97 lines (81 loc) · 1.88 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
theme = "soho"
baseurl = "https://katehertweck.com/"
languageCode = "en"
title = "Kate Hertweck"
DefaultContentLanguage = "en"
enableInlineShortcodes = true
summarylength = 10
enableEmoji = true
paginate = 5
googleAnalytics = "UA-174380839-1"
ignoreFiles = ["\\.Rmd$", "\\.Rmarkdown$", "_files$", "_cache$"]
[params]
title = "Kate Hertweck"
description = "science, education, bioinformatics"
# gravatar = "soho@example.com"
images = ["images/kate_headshot.jpg"]
profilePicture = "images/kate_headshot.jpg"
copyright = "Kate Hertweck"
license = "CC BY-SA 4.0"
licenseURL = "https://creativecommons.org/licenses/by-sa/4.0"
builtWith = true
mainSections = ["post"]
## Set custom theme color.
themeColor = "#582994"
[[params.socialIcons]]
icon = "fa-linkedin"
title = "LinkedIn"
url = "https://www.linkedin.com/in/katehertweck/"
[[params.socialIcons]]
icon = "fa-github"
title = "GitHub"
url = "https://github.com/k8hertweck"
[[params.socialIcons]]
icon = "fa-twitter"
title = "Twitter"
url = "https://twitter.com/k8hert"
[[params.socialIcons]]
icon = "fa-orcid"
title = "ORCID"
url = "https://orcid.org/0000-0002-4026-4612"
[taxonomies]
series = "series"
category = "categories"
tag = "tags"
[menu]
[[menu.main]]
name = "Posts"
weight = 100
identifier = "posts"
url = "/posts/"
[[menu.main]]
name = "Tags"
weight = 200
identifier = "tags"
url = "/tags/"
[[menu.main]]
name = "About"
identifier = "about"
weight = 10
url = "/about/"
[[menu.main]]
name = "Projects"
identifier = "projects"
weight = 20
url = "/projects/"
[[menu.main]]
name = "Publications"
identifier = "publications"
weight = 20
url = "/publications/"
[markup]
[markup.highlight]
codeFences = true
guessSyntax = false
hl_Lines = ""
lineNoStart = 1
lineNos = false
lineNumbersInTable = true
noClasses = true
style = "monokai"
tabWidth = 4