-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhugo.toml
82 lines (69 loc) · 1.84 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
# general settings
baseurl = "/"
languageCode = "en-us"
theme = "hugo-theme-hello-friend-mod"
# enableGitInfo = true
enableRobotsTXT = true
# increase timeout due to image processing
timeout = "120s"
[pagination]
pagerSize = 5
# better resampling algorithm
[imaging]
quality = 95
resampleFilter = "Lanczos"
# markdown settings
[markup]
defaultMarkdownHandler = "goldmark"
[markup.goldmark]
[markup.goldmark.extensions]
footnote = true
[markup.goldmark.renderer]
# needed for superscript
unsafe = true
[markup.highlight]
lineNos = true
lineNumbersInTable = false
anchorLineNos = true
# https://xyproto.github.io/splash/docs/all.html
style = "vulcan"
# theme parameters
[params]
contentTypeName = "posts"
defaultTheme = "dark"
showMenuItems = 2
showReadingTime = true
toc = true
rssFullText = true
# custom favicon
favicon = "https://nathanv.me/img/theme-colors/green.png"
# default open graph image
images = ["img/opg.png"]
[privacy]
[privacy.youtube]
privacyEnhanced = true
[languages]
[languages.en]
title = "nathanv@blog"
copyright = '<span>Written by a <a href="https://nathanv.me">human</a>, for humans</span>'
[languages.en.params]
keywords = ["programming", "tech", "Nathan", "Vaughn", "blog"]
description = "Adventures in programming and tech"
subtitle = "Adventures in programming and tech"
lastModDisplay = "Last Modified:"
# logo parameters
[languages.en.params.logo]
logoText = "nathanv@blog"
logoHomeLink = "/"
# extra links
[languages.en.menu]
[[languages.en.menu.main]]
identifier = "Homepage"
name = "Homepage"
weight = 10
url = "https://nathanv.me"
[[languages.en.menu.main]]
identifier = "links"
name = "Links"
weight = 20
url = "https://links.nathanv.me/"