-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathconfig.toml
54 lines (42 loc) · 1.07 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
baseURL = "http://example.org/"
title = "ApacheCon at Home 2021"
theme = "apachecon"
# When enabled, creates URL of the form /filename.html instead of /filename/.
uglyURLs = true
languageCode = "en-us"
DefaultContentLanguage = "en"
[languages.en]
languageName = "English"
weight = 1
[languages.zh]
languageName = "中文"
weight = 2
disableKinds = ["taxonomy", "taxonomyTerm"]
[markup.goldmark.renderer]
unsafe = true
# menu for en ((final list includes translated pages from /content)
[[languages.en.menu.main]]
name = "t-shirt"
url = "https://s.apache.org/apache-tshirt"
weight = -110
[[languages.en.menu.main]]
name = "Location"
url = "/getting-started/"
weight = -100
[[languages.en.menu.main]]
name = "Schedule"
url = "tracks.html"
weight = -100
# menu for ZH language (final list includes translated pages from /content)
[[languages.zh.menu.main]]
name = "T恤"
url = "https://s.apache.org/apach-tshirt"
weight = -110
[[languages.zh.menu.main]]
name = "地点"
url = "/getting-started/"
weight = -100
[[languages.zh.menu.main]]
name = "日程"
url = "/tracks.html"
weight = -100