-
Notifications
You must be signed in to change notification settings - Fork 1
/
hugo.toml
155 lines (138 loc) · 3.72 KB
/
hugo.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
baseurl = "https://kevcaz.github.io/"
relativeurls = true
languageCode = "en-us"
title = "KevCaz's Website"
copyright = "Content under CC0 1.0 Universal unless otherwise specified."
theme = "funkyflex"
enableEmoji = true
footnotereturnlinkcontents = "<sup>^</sup>"
pygmentsUseClasses = false
ignoreErrors = ["error-remote-getjson"]
# Default language to use (if you setup multilingual support)
defaultContentLanguage = "en"
defaultContentLanguageInSubdir = false
[markup.goldmark.renderer]
unsafe = true
[markup.highlight]
style = "rose-pine-dawn"
lineNos = true
[params]
authorname = "Kevin Cazelles"
role = "Post-doctoral fellow in theoretical and computational ecology [@McCann Lab](https://mccannlab.ca/)"
organization = "Department of Integrated Biology, University of Guelph"
organization_url = "https://www.uoguelph.ca/ib/"
github = "KevCaz"
rss = true
stackoverflow = "8038778"
orcid = "0000-0001-6619-9874"
researchgate = "Kevin_Cazelles"
googlescholar = "xzvcu7cAAAAJ&hl"
mastodon = "@KCazelles"
address = "Department of Integrative Biology, Summerlee Science Complex, University of Guelph, Guelph, ON N1G 2W1"
office_hours = "Send me an email for setting an appointment."
email = "kcazelle@uoguelph.ca"
phone = "+1 519 824 4120 (ext. 53700)"
# Date format (refer to Go's date format: http://flippinggodateformat.com )
# Examples: "Mon, Jan 2, 2006" or "2006-01-02"
date_format = "Mon, Jan 2, 2006"
footer = "Website built with <a href='https://gohugo.io/'>Hugo</a>.<br><i class='fas fa-code'></i> available on <a href='https://github.com/KevCaz/KevCaz.github.io'><i class='fab fa-github'></i></a>."
copyright = "<br>Content under <a href='https://creativecommons.org/publicdomain/zero/1.0'><i class='fab fa-creative-commons'></i><i class='fab fa-creative-commons-zero'></i></a> unless otherwise specified."
latestbuild = true
col_emphase = "#b4637a"
# Link custom CSS and JS assets
# (relative to /static/css and /static/js respectively)
custom_css = ["perso.css", "family.css"]
custom_js = []
# Navigation Links
[permalinks]
post = "/:year/:month/:day/:slug/"
[menu]
[[menu.main]]
identifier = "home"
name = "<i class='fas fa-home'></i> Home"
url = "/"
weight = 1
[[menu.main]]
identifier = "research"
name = "<i class='fas fa-microscope'></i> Research"
url = "/research/"
weight = 2
[[menu.main]]
parent = "research"
name = "About my research"
url = "/about_my_research/"
weight = 1
[[menu.main]]
parent = "research"
name = "Publications"
url = "/publications/"
weight = 2
[[menu.main]]
parent = "research"
name = "Software"
url = "/software/"
weight = 3
[[menu.main]]
parent = "research"
name = "Software"
url = "/software/"
weight = 4
[[menu.main]]
parent = "research"
name = "Talks & Posters"
url = "/talks/"
weight = 5
[[menu.main]]
parent = "research"
name = "Teaching"
url = "/teaching/"
weight = 6
[[menu.main]]
name = "<i class='fas fa-blog'></i> Blog"
identifier = "blog"
url = "/econotes/"
weight = 4
[[menu.main]]
parent = "blog"
name = "EcoNotes"
url = "/econotes/"
weight = 1
[[menu.main]]
parent = "blog"
name = "SilicoNotes"
url = "/notes/"
weight = 2
[[menu.main]]
parent = "blog"
name = "inSilecoBlog"
url = "https://insileco.github.io/"
weight = 3
[[menu.main]]
name = "<i class='fas fa-person-booth'></i> Miscelleneous"
identifier = "perso"
weight = 5
[[menu.main]]
parent = "perso"
name = "Books"
url = "/perso/books"
weight = 1
[[menu.main]]
parent = "perso"
name = "Movies"
url = "/perso/movies"
weight = 2
[[menu.main]]
parent = "perso"
name = "Opinions"
url = "/perso/opinions"
weight = 3
# Taxonomies.
[taxonomies]
tag = "tags"
topic = "topics"
# category = "categories"
# Languages
# Create a [languages.X] block for each language you want, where X is the language ID.
# Configure the English version of the website.
[languages.en]
languageCode = "en-us"