-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.toml
101 lines (91 loc) · 2.4 KB
/
config.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
baseURL = "https://the.b1h.space"
# [en, zh-cn, fr, ...] determines default content language
defaultContentLanguage = "en"
# language code
languageCode = "en"
title = "the B1H space"
# Change the default theme to be use when building the site with Hugo
theme = "LoveIt"
[params]
# LoveIt theme version
version = "0.2.X"
#date format
dateFormat = "02/01/2006"
# site default theme ("light", "dark", "auto")
defaultTheme = "dark"
# public git repo url only then enableGitInfo is true
gitRepo = "https://github.com/b1he/the.b1h.space"
[menu]
[[menu.main]]
identifier = "posts"
# you can add extra information before the name (HTML format is supported), such as icons
pre = ""
# you can add extra information after the name (HTML format is supported), such as icons
post = ""
name = "Posts"
url = "/posts/"
# title will be shown when you hover on this menu link
title = ""
weight = 1
# [[menu.main]]
# identifier = "tags"
# pre = ""
# post = ""
# name = "Tags"
# url = "/tags/"
# title = ""
# weight = 2
# [[menu.main]]
# identifier = "categories"
# pre = ""
# post = ""
# name = "Categories"
# url = "/categories/"
# title = ""
# weight = 3
[[menu.main]]
identifier = "about"
pre = ""
post = ""
name = "About"
url = "/about/"
title = ""
weight = 3
# Markup related configuration in Hugo
[markup]
# Syntax Highlighting (https://gohugo.io/content-management/syntax-highlighting)
[markup.highlight]
# false is a necessary configuration (https://github.com/dillonzq/LoveIt/issues/158)
noClasses = false
[markup.goldmark]
[markup.goldmark.renderer]
unsafe = true
# Footer config
[params.footer]
enable = true
custom = 'Bill He 2019-2020'
hugo = false
copyright = false
author = false
since = 2019
# LoveIt NEW | 0.2.0 Section (all posts) page config
[params.section]
# special amount of posts in each section page
paginate = 20
# date format (month and day)
dateFormat = "02/01"
# amount of RSS pages
rss = 10
# LoveIt NEW | 0.2.0 List (category or tag) page config
[params.list]
# special amount of posts in each list page
paginate = 20
# date format (month and day)
dateFormat = "02/01"
# amount of RSS pages
rss = 10
# Sitemap config
[sitemap]
changefreq = "weekly"
filename = "sitemap.xml"
priority = 0.5