-
Notifications
You must be signed in to change notification settings - Fork 2
/
hugo.toml
165 lines (138 loc) · 4.49 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
baseURL = 'https://www-new.llvm.org'
languageCode = 'en-us'
title = 'The LLVM Compiler Infrastructure'
theme = 'www-template'
[markup.goldmark.renderer]
unsafe= true
# Navigation Bar Menu
[[menus.main]]
name = 'Getting Started'
url = 'https://llvm.org/docs/GettingStarted.html'
weight = 10
[[menus.main]]
name = 'Features'
url = 'features'
weight = 15
[[menus.main]]
name = 'Docs'
url = 'https://llvm.org/docs/'
weight = 20
[[menus.main]]
name = 'Blogs'
url = 'https://blog.llvm.org/'
weight = 30
[[menus.main]]
name = 'Resources'
url = '/resources'
weight = 40
[[menus.main]]
name = 'Doxygen '
url = 'https://llvm.org/doxygen/'
weight = 1
parent = 'Resources'
[[menus.main]]
name = 'GitHub'
url = 'https://github.com/llvm/llvm-project/'
weight = 2
parent = 'Resources'
[[menus.main]]
name = 'GSoC Projects'
url = '/gsoc-projects'
weight = 3
parent = 'Resources'
[[menus.main]]
name = 'Publications'
url = '/pubs'
weight = 4
parent = 'Resources'
[[menus.main]]
name = 'Downloads'
url = 'https://releases.llvm.org'
weight = 50
[module]
[module.hugoVersion]
extended = false
min = "0.116.0"
# Hero section links
[params]
logo = "images/logo.png"
navbar_logo = "images/logo.png"
subtitle = 'The LLVM Project is a collection of modular and reusable compiler and toolchain technologies. Despite its name, LLVM has little to do with traditional virtual machines. The name "LLVM" itself is not an acronym; it is the full name of the project. '
no_robots = true
[params.banner]
visible = true
description = "Feedback for this website"
[[params.banner.buttons]]
text = "Feedback Form"
url = "https://docs.google.com/forms/d/1irmZ1vSHtYUqTFQIUqBxl2rjbW4mpaRdzrpBxsqxrsE/"
[[params.banner.buttons]]
text = "Old Website"
url = "https://llvm.org"
[[params.hero_section_buttons]]
title = "Get Started"
url = "https://llvm.org/docs/GettingStarted.html"
type = "primary"
[[params.hero_section_buttons]]
title = "Releases"
url = "https://releases.llvm.org"
type = "secondary"
# only first 4 links will be displayed
[[params.hero_section_links]]
title = "Latest Release"
icon = "ri-hashtag"
url = "https://releases.llvm.org"
[[params.hero_section_links]]
title = "Upcoming Events"
icon = "ri-play-large-line"
url = "#upcoming_events"
[[params.hero_section_links]]
title = "Read the Docs"
icon = "ri-book-open-line"
url = "https://llvm.org/docs/"
[[params.hero_section_links]]
title = "LLVM Projects"
icon = "ri-projector-line"
url = "/projects-with-llvm"
# Table of contents config
[markup]
[markup.tableOfContents]
startLevel = 2
endLevel = 4
# Footer config
[params.footer]
title = "The LLVM Compiler Infrastructure"
[[params.footer.columns]]
title = "LLVM"
links = [
{ text = "Getting Started", url = "https://llvm.org/docs/GettingStarted.html" },
{ text = "Features", url = "/features" },
{ text = "Documentation", url = "https://llvm.org/docs" },
{ text = "Blog", url = "https://blog.llvm.org" },
{ text = "FAQ", url = "https://llvm.org/docs/FAQ.html" },
{ text = "Publications", url = "/pubs" },
{ text = "Projects with LLVM", url = "/projects-with-llvm" },
{ text = "GSoC Projects", url = "/gsoc-projects" },
{ text = "Download", url = "https://releases.llvm.org/" }
]
[[params.footer.columns]]
title = "Dev. Resources"
links = [
{ text = "Doxygen", url = "https://llvm.org/doxygen/" },
{ text = "Sources (GitHub)", url = "https://github.com/llvm/llvm-project/" },
{ text = "Bug Tracker", url = "https://github.com/llvm/llvm-project/issues/" },
{ text = "Buildbot", url = "https://lab.llvm.org/buildbot/" },
{ text = "Green Dragon", url = "http://green.lab.llvm.org/" },
{ text = "LNT", url = "http://lnt.llvm.org/" },
{ text = "Scan Build", url = "https://llvm.org/reports/scan-build/" },
{ text = "Compile-time tracker", url = "https://llvm-compile-time-tracker.com/" }
]
[[params.footer.columns]]
title = "About LLVM"
links = [
{ text = "LLVM Foundation", url = "https://foundation.llvm.org/" },
{ text = "LLVM Discourse Forum", url = "https://discourse.llvm.org/" },
{ text = "Mailing Lists", url = "https://lists.llvm.org/cgi-bin/mailman/listinfo" },
{ text = "Discord", url = "https://discord.gg/xS7Z362" },
{ text = "IRC Channel irc.oftc.net #llvm", url = "https://llvm.org/docs/GettingInvolved.html#irc" },
{ text = "LLVM Community Calendar", url = "https://calendar.google.com/calendar/u/0/[email protected]" },
]