-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.toml
More file actions
111 lines (91 loc) · 2.16 KB
/
config.toml
File metadata and controls
111 lines (91 loc) · 2.16 KB
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
109
110
111
baseURL = "https://pazthor.github.io/"
languageCode = "en-us"
title = "Pazthor Blog"
theme = "PaperMod"
[pagination]
pagerSize = 10
publishDir = "public"
enableGitInfo = true
enableRobotsTXT = true
buildDrafts = false
buildFuture = false
buildExpired = false
[permalinks]
posts = "/posts/:slug/"
[taxonomies]
tag = "tags"
category = "categories"
[markup.goldmark.renderer]
unsafe = true
[markup.highlight]
noClasses = false
style = "monokai"
lineNos = true
lineNumbersInTable = true
[minify]
disableXML = true
minifyOutput = true
[params]
env = "production"
author = "pazthor"
description = "Notes and updates from Pazthor."
keywords = ["blog", "linux", "development", "devops", "tutorials"]
defaultTheme = "auto"
disableThemeToggle = false
ShowReadingTime = true
ShowShareButtons = true
ShowPostNavLinks = true
ShowBreadCrumbs = true
ShowCodeCopyButtons = true
ShowWordCount = true
ShowRssButtonInSectionTermList = true
UseHugoToc = true
disableSpecial1stPost = false
disableScrollToTop = false
comments = false
hidemeta = false
hideSummary = false
showtoc = true
tocopen = false
[params.profileMode]
enabled = false
[params.homeInfoParams]
Title = "Welcome to Pazthor's Blog"
Content = "A developer's journey through Linux, system configuration, and technical experiments. I document troubleshooting adventures, setup guides, and lessons learned along the way."
[[params.socialIcons]]
name = "github"
url = "https://github.com/pazthor"
[[params.socialIcons]]
name = "rss"
url = "/index.xml"
[params.cover]
hidden = false
hiddenInList = false
hiddenInSingle = false
[params.fuseOpts]
isCaseSensitive = false
shouldSort = true
location = 0
distance = 1000
threshold = 0.4
minMatchCharLength = 0
keys = ["title", "permalink", "summary", "content"]
[outputs]
home = ["HTML", "RSS", "JSON"]
[menu]
[[menu.main]]
name = "Posts"
url = "/posts/"
weight = 1
[[menu.main]]
name = "Tags"
url = "/tags/"
weight = 2
[[menu.main]]
name = "About"
url = "/about/"
weight = 3
[[menu.main]]
name = "Search"
url = "/search/"
weight = 4