-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhugo.toml
108 lines (96 loc) · 2.31 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
baseURL = 'https://mayabflannery.github.io'
title = 'Maya Breanne Flannery'
theme = "hugo-coder"
languagecode = "en"
defaultcontentlanguage = "en"
enableEmoji = true
# Use pagination.pagerSize instead of 'paginate = 20'
[pagination]
pagerSize = 8
[services]
[services.disqus]
# disqusShortname = "yourdiscussshortname"
[markup]
[markup.highlight]
style = "github-dark"
[markup.goldmark]
[markup.goldmark.parser.attribute]
block = true # for adding css to block (default is false)
[markup.goldmark.renderer]
# If raw html is needed
# unsafe = true
[markup.goldmark.extensions]
[markup.goldmark.extensions.passthrough]
enable = true
[markup.goldmark.extensions.passthrough.delimiters]
# See: https://gohugo.io/content-management/mathematics/
block = [['\[', '\]'], ['$$', '$$']]
inline = [['\(', '\)'], ['$', '$']]
[params]
author = "Maya B. Flannery"
info = ["PhD Candidate"]
description = "My work"
keywords = "developer,personal,psychology,neuroscience,behaviour,research,cardiac,ppg,music"
avatarurl = "images/avatar.jpg"
#gravatar = "[email protected]"
math = true
faviconSVG = "/img/favicon.svg"
favicon_32 = "/img/favicon-32x32.png"
favicon_16 = "/img/favicon-16x16.png"
since = 2018
enableTwemoji = true
colorScheme = "auto"
hidecolorschemetoggle = false
customCSS = ["css/custom.css"]
# customSCSS = ["scss/custom.scss"]
# customJS = ["js/custom.js"]
[taxonomies]
category = "categories"
tag = "tags"
# Social links
[[params.social]]
name = "Github"
icon = "fa-brands fa-github fa-2x"
weight = 1
url = "https://github.com/mayabflannery"
[[params.social]]
name = "LinkedIn"
icon = "fa fa-linkedin-square fa-2x"
weight = 2
url = "https://www.linkedin.com/in/mayabflannery/"
[[params.social]]
name = "Twitter"
icon = "fa-brands fa-twitter fa-2x"
weight = 3
url = "https://twitter.com/mayabflannery/"
[[params.social]]
name = "Bluesky"
icon = "fa-brands fa-bluesky fa-2x"
weight = 3
url = "https://bsky.app/profile/mayabflannery.bsky.social"
[[params.social]]
name = "Lab Website"
icon = "fa fa-building-o fa-2x"
weight = 4
url = "https://beatlab.mcmaster.ca"
# Menu links
[[menu.main]]
name = "About"
weight = 2
url = "about/"
[[menu.main]]
name = "CV"
weight = 2
url = "cv/"
[[menu.main]]
name = "Projects"
weight = 3
url = "projects/"
[[menu.main]]
name = "Posts"
weight = 5
url = "posts/"
[[menu.main]]
name = "Contact"
weight = 4
url = "contact/"