-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhugo.toml
More file actions
111 lines (87 loc) · 2.56 KB
/
hugo.toml
File metadata and controls
111 lines (87 loc) · 2.56 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://dineshkuppan.dev/'
languageCode = 'en-us'
defaultContentLanguage = 'en'
title = "❯ DineshKumar's Blog"
subtitle = "Learn. Share. Repeat."
copyright = "© 2024-2025 Dinesh Blog. All rights reserved."
author = "Dinesh Kumar"
description = "Dinesh Kumar's blog"
enableRobotsTXT = true
hasCJKLanguage = false
summaryLength = 5
pagination.pagerSize = 5
theme = "../../"
[params]
# show in HTML meta tag
author = "Dinesh Kumar"
keywords = "HTML, CSS"
description = "Dinesh Kumar's blog"
# change bulma's primary color
# primaryColor = "#3e50b4"
primaryColor = "#1d9bf0"
# use primary color everywhere, default true
primaryEverywhere = true
# change bulma's link color (secondary color in this theme)
# linkColor = "#ff3f80"
# copyright text on footer
copyright = "Copyright © 2024-2025 Dinesh Blog. All rights reserved."
# enable katex rendering on every post page, default false
math = false
# enable postcss, mainly for css purge (713kB->155kB->20kB gzipped, but this makes build slower), default false
postcss = true
# enable showing content summary below post title in home page, default false
showSummary = true
# set paginate on taxonomy term page (tags or categories), default 10
termPaginate = 5
# enable toc on every post page, default false
toc = true
# enable TOC auto collapse, default false
autoCollapseToc = true
# enable prefers-color-scheme:dark, default false
darkMedia = true
# enable user to toggle dark mode with a menu, default false
darkToggle = true
# enable hero section's is-bold effect, default false
heroBold = false
# enable hero section that looks like steam deck's home page, default false
heroSteamDeck = false
# enable PWA, prepare your icons and DON'T forget to modify manifest.json, default false
pwa = true
# disable jsdelivr cdn, default false
noCDN = false
# for postcss-purgecss
# see https://purgecss.com/guides/hugo.html
[build]
writeStats = true
# to enable different hightlight themes in light/dark mode
[markup]
[markup.highlight]
noClasses = false
[menu]
[[menu.main]]
identifier = "index"
name = "Home"
url = "/"
weight = 1
[[menu.main]]
identifier = "categories"
name = "Categories"
url = "/categories/"
weight = 2
[[menu.main]]
identifier = "tags"
name = "Tags"
url = "/tags/"
weight = 3
[[menu.main]]
identifier = "about"
name = "About"
url = "/about/"
weight = 4
[taxonomies]
category = "categories"
tag = "tags"
[module]
[module.hugoVersion]
extended = true
min = "0.110.0"