-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhugo.toml
233 lines (203 loc) · 5.62 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
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
baseURL = "https://saasify-demo.chaoming.li/"
languageCode = "en-us"
title = "Saasify"
theme = "hugo-saasify-theme"
# Enable syntax highlighting
pygmentsCodeFences = true
pygmentsUseClasses = true
# Enable emoji support
enableEmoji = true
# Enable Git info for lastmod
enableGitInfo = true
# Enable taxonomies
[taxonomies]
category = 'categories'
tag = 'tags'
# Pagination
paginate = 6
paginatePath = "page"
[params]
description = ""
author = "Chaoming Li"
logo = "/images/logo.svg"
googleAnalytics = "G-E6RMRJ4HQ3"
# Global CTA Configuration
[params.cta]
enable = true
title = "Ready to Build Your SaaS Website?"
description = "Join companies already using our theme to create beautiful, high-performance websites."
gradient_from = "#2563eb" # Indigo-600
gradient_to = "#7c3aed" # Purple-600
gradient_angle = 30
[params.cta.primary_button]
text = "Get Started Free"
url = "/get-started"
[params.cta.secondary_button]
text = "Book Demo"
url = "/demo"
# Social Media Links
[params.social]
linkedin = "https://linkedin.com/in/chaomingli"
twitter = "https://twitter.com/lichaoming"
youtube = "https://youtube.com/@chaomingli"
facebook = "https://facebook.com/lichaoming"
instagram = "https://instagram.com/lichaoming"
github = "https://github.com/chaoming"
# Footer Configuration
[params.footer]
column_1_title = "Features"
column_2_title = "COMPANY"
column_3_title = "LEGAL"
[params.header]
# Header background and border styles (optional)
background = "bg-white/80 backdrop-blur-sm"
border = "border-b border-gray-100"
# Logo configuration
[params.header.logo]
src = "/images/logo.svg"
# Menu configuration
[params.header.menu]
spacing = "space-x-8"
# Dropdown menu configuration
[params.header.menu.dropdown]
width = "w-72"
container_padding = "py-6"
item_padding = "px-8 py-3"
background = "bg-white"
border = "border border-gray-100"
shadow = "shadow-xl"
radius = "rounded-lg"
text_color = "text-gray-700"
hover_background = "hover:bg-gray-50"
text_size = "text-sm"
# Button configuration
[params.header.buttons]
# Sign In button
[params.header.buttons.signIn]
text = "Sign in"
url = "/signin"
# Get Started button
[params.header.buttons.getStarted]
text = "Get Started"
url = "/get-started"
# Blog configuration
[params.blog]
enable = true
title = "Latest Articles"
subtitle = "Learn more about web development and best practices"
# Blog CTA configuration
[params.blog.cta]
enable = true # Enable/disable CTA in blog posts
# Sidebar configuration
[params.blog.sidebar]
# Recent articles section
[params.blog.sidebar.recent]
enable = true
title = "Recent Articles"
count = 5
# Categories section
[params.blog.sidebar.categories]
enable = true
title = "Categories"
# Tags section
[params.blog.sidebar.tags]
enable = true
title = "Popular Tags"
count = 20
# Subscribe form section
[params.blog.sidebar.subscribe]
enable = true
title = "Subscribe to Newsletter"
description = "Get the latest posts delivered right to your inbox"
action = "https://formspree.io/f/your-form-id"
emailName = "email"
buttonText = "Subscribe"
placeholder = "Enter your email"
disclaimer = "We respect your privacy. Unsubscribe at any time."
[module]
[module.hugoVersion]
extended = true
min = "0.80.0"
[build]
writeStats = true
[build.buildStats]
enable = true
[security.funcs]
getenv = ['^HUGO_', '^CI$']
[markup]
[markup.highlight]
noClasses = false
lineNos = true
codeFences = true
guessSyntax = true
lineNumbersInTable = true
[markup.goldmark.renderer]
unsafe = true
[markup.tableOfContents]
endLevel = 3
ordered = false
startLevel = 2
# Navigation Menu
[menu]
[[menu.main]]
name = "Features"
weight = 1
[menu.main.params]
has_submenu = true
submenu = [
{ name = "Performance", url = "/features/performance/" },
{ name = "Design System", url = "/features/design-system/" },
{ name = "Developer Experience", url = "/features/developer-experience/" }
]
[[menu.main]]
name = "Pricing"
url = "/pricing"
weight = 2
[[menu.main]]
name = "Blog"
url = "/blog"
weight = 3
[[menu.main]]
name = "Company"
weight = 4
[menu.main.params]
has_submenu = true
submenu = [
{ name = "About Us", url = "/company/" },
{ name = "Careers", url = "/careers/" }
]
# Footer Column 1 Menu
[[menu.footer_column_1]]
name = "Performance"
url = "/features/performance/"
weight = 1
[[menu.footer_column_1]]
name = "Design System"
url = "/features/design-system/"
weight = 2
[[menu.footer_column_1]]
name = "Developer Experience"
url = "/features/developer-experience/"
weight = 3
# Footer Column 2 Menu
[[menu.footer_column_2]]
name = "Blog"
url = "/blog"
weight = 1
[[menu.footer_column_2]]
name = "About Us"
url = "/company"
weight = 2
[[menu.footer_column_2]]
name = "Careers"
url = "/careers"
weight = 3
# Footer Column 3 Menu
[[menu.footer_column_3]]
name = "License"
url = "/license"
weight = 1
[[menu.footer_column_3]]
name = "Privacy Policy"
url = "/privacy"
weight = 2