-
Notifications
You must be signed in to change notification settings - Fork 0
/
hugo.toml
65 lines (54 loc) · 1.02 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
# Basic config
baseURL = "https://petermiller310.github.io/"
theme = "hugo-simple"
languageCode = "en-US"
title = "Peter Miller"
enableRobotsTXT = true
capitalizeListTitles = true
# Taxonomy settings
[taxonomies]
tag = "tags"
[permalinks]
blog = "/:slugorfilename/"
tags = "/blog/:slug"
# Markup settings
[markup.goldmark.renderer]
unsafe = true
[markup.tableOfContents]
startLevel = 2
endLevel = 3
[markup.highlight]
lineNos = true
lineNumbersInTable = false
noClasses = true
style = "catppuccin-mocha"
# Parameters
[params]
title = "Peter Miller"
description = "Personal blog"
dateFormat = "2006-01-02"
hideMadeWithLine = true
hideRSSLink = true
github = "petermiller310"
favicon = "images/favicon.png"
# Author information
[params.author]
name = "Peter Miller"
email = ""
# Navigation menu
[[menu.main]]
name = "Home"
pageRef = "/"
weight = 10
[[menu.main]]
name = "Blog"
pageRef = "/posts"
weight = 20
# Pagination
[pagination]
pagerSize = 16
# Output formats
[outputs]
section = ["html"]
taxonomy = ["html"]
term = ["html"]