-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhugo.toml
More file actions
158 lines (131 loc) · 2.96 KB
/
hugo.toml
File metadata and controls
158 lines (131 loc) · 2.96 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
baseURL = 'https://djpremier.dev/'
title = 'Djpremier.dev'
enableRobotsTXT = true
enableGitInfo = true
enableEmoji = true
enableInlineShortcodes = true
defaultContentLanguage = 'en'
[outputs]
home = ['html', 'llms']
page = ['html']
section = ['html', 'rss']
[languages]
[languages.en]
languageName = 'English'
weight = 1
title = 'Djpremier.dev'
[languages.pt-br]
languageName = 'Português (BR)'
weight = 2
title = 'Djpremier.dev'
[languages.es]
languageName = 'Español'
weight = 3
title = 'Djpremier.dev'
[module]
[module.hugoVersion]
extended = true
min = '0.146.0'
[[module.imports]]
path = 'github.com/imfing/hextra'
[markup]
[markup.highlight]
noClasses = false
[markup.goldmark]
[markup.goldmark.renderer]
unsafe = true
[menu]
[[menu.main]]
identifier = 'home'
name = 'Home'
pageRef = '/'
weight = 10
[[menu.main]]
identifier = 'about'
name = 'About'
pageRef = '/about'
weight = 20
[[menu.main]]
identifier = 'projects'
name = 'Projects'
pageRef = '/projects'
weight = 40
# [[menu.main]]
# identifier = 'blog'
# name = 'Blog'
# pageRef = '/blog'
# weight = 50
[[menu.main]]
identifier = 'search'
name = 'Search'
weight = 60
[menu.main.params]
type = 'search'
[[menu.main]]
identifier = 'github'
name = 'GitHub'
url = 'https://github.com/djpremier'
weight = 70
[menu.main.params]
icon = 'github'
[[menu.main]]
identifier = 'linkedin'
name = 'LinkedIn'
url = 'https://www.linkedin.com/in/djpremier/'
weight = 80
[menu.main.params]
icon = 'linkedin'
[[menu.main]]
identifier = 'telegram'
name = 'Telegram'
url = 'https://t.me/djpremier'
weight = 90
[menu.main.params]
icon = 'telegram'
[params]
displayUpdatedDate = true
[params.navbar]
displayTitle = true
displayLogo = false
width = 'wide'
[params.search]
enable = true
type = 'flexsearch'
[params.search.flexsearch]
# index page by: content | summary | heading | title
index = 'content'
# full | forward | reverse | strict
# https://github.com/nextapps-de/flexsearch/#tokenizer-prefix-search
tokenize = 'forward'
[params.page]
width = 'wide'
[params.theme]
default = 'system'
displayToggle = true
[params.footer]
enable = true
displayCopyright = true
displayPoweredBy = false
displaySocials = true
displaySearch = true
displayGithub = true
displayLinkedin = true
displayTelegram = true
width = 'wide'
[params.editURL]
enable = false
base = 'https://github.com/djpremier/djpremier.dev/edit/main/content'
[blog]
[blog.list]
displayTags = true
sortBy = 'publishDate'
sortOrder = 'desc'
pagerSize = 5
[blog.article]
displayPagination = true
[toc]
displayTags = true
[highlight]
[highlight.copy]
enable = true
display = 'hover'