-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhugo.toml
106 lines (89 loc) · 2 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
baseURL = 'https://trdwll.com/'
languageCode = 'en-us'
title = 'TRDWLL'
theme = 'anatole'
summarylength = 10
enableEmoji = true
enableRobotsTXT = true
[params]
title = "Russ 'trdwll' Treadwell"
author = "Russ Treadwell"
description = """
I work on video games, websites, and general applications.
"""
profilePicture = "assets/russ_small.png"
mainSections = ["post"]
doNotLoadAnimations = true
singleDateFormat = "Mon, Jan 2, 2006"
indexDateFormat = "Mon, Jan 2, 2006"
listDateFormat = "Jan 2"
copyright = """
2014-{{ YEAR }} Russ 'trdwll' Treadwell. All rights reserved.
"""
oldContentWarning = true
oldContentDuration = 365
readMore = true
postSectionName = 'posts'
reversepagetitle = true
[permalinks]
post = "/blog/:title"
[[params.socialIcons]]
icon = "fab fa-linkedin"
title = "Linkedin"
url = "https://linkedin.com/in/trdwll"
[[params.socialIcons]]
icon = "fab fa-github"
title = "GitHub"
url = "https://github.com/trdwll/"
[[params.socialIcons]]
icon = "fab fa-twitter"
title = "twitter"
url = "https://www.twitter.com/trdwll"
[[params.socialIcons]]
icon = "fab fa-instagram"
title = "instagram"
url = "https://www.instagram.com/trdwll"
[[params.socialIcons]]
icon = "fas fa-envelope"
title = "e-mail"
url = "mailto:russ@trdwll.com"
[menu]
[[menu.main]]
name = "Home"
identifier = "home"
weight = 100
url = "/"
[[menu.main]]
name = "Posts"
weight = 200
identifier = "posts"
url = "/post/"
[[menu.main]]
name = "About"
weight = 300
identifier = "about"
url = "/about/"
# Syntax highlighting
pygmentsUseClasses = true
pygmentsCodeFences = true
pygmentsCodefencesGuessSyntax = true
# Localized dates requires Hugo version 0.87.0
localizedDates = false
[markup]
[markup.goldmark]
[markup.goldmark.renderer]
unsafe=true
[taxonomies]
category = "categories"
series = "series"
tag = "tags"
[related]
includeNewer = true
threshold = 80
toLower = true
[[related.indices]]
name = 'keywords'
weight = 100
[[related.indices]]
name = 'tags'
weight = 80