-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
66 lines (55 loc) · 1.75 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
title = "Not a Number"
baseURL = 'https://mdodis.github.io/'
languageCode = 'en-us'
theme = "hugo-blog-awesome"
# To enable Google Analytics 4 (gtag.js) provide G-MEASUREMENT_ID below.
# To disable Google Analytics, simply leave the field empty or remove the next line
googleAnalytics = '' # G-MEASUREMENT_ID
# Enable emojis globally
enableEmoji = true
# set markup.highlight.noClasses=false to enable code highlight
[markup]
[markup.highlight]
noClasses = false
[markup.goldmark.renderer]
unsafe = true
[menu]
[[menu.main]]
# The page reference (pageRef) is useful for menu highlighting
# When pageRef is set, setting `url` is optional; it will be used as a fallback if the page is not found.
pageRef="/"
name = 'Home'
url = '/'
weight = 10
[[menu.main]]
pageRef="posts"
name = 'Posts'
url = '/posts/'
weight = 20
[[menu.main]]
pageRef="about"
name = 'About'
url = '/about/'
weight = 30
[params]
sitename = "Not a Number"
defaultColor = "dark" # set default color mode: dark or light
description = "A site, about a person with a face and stuff"
[params.author]
avatar = "BOI.jpg" # put the file in assets folder; also ensure that image has same height and width
# Note: image is not rendered if the resource(avatar image) is not found. No error is displayed.
intro = "Not a Number"
name = "Michael Dodis"
description = "A site, about a person with a face and stuff"
[[params.socialIcons]]
name = "github"
url = "https://github.com/mdodis"
[[params.socialIcons]]
name = "twitter"
url = "https://twitter.com/mdodis_t"
[[params.socialIcons]]
name = "linkedin"
url = "https://www.linkedin.com/in/michael-dodis-1557141b3"
[[params.socialIcons]]
name = "itchio"
url = "https://mdodis.itch.io/"