eclipsefdn-hugo-solstice-theme 0.3.3 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/config.toml +0 -660
- package/exampleSite/config/_default/config.toml +2 -3
- package/layouts/_default/baseof.html +0 -1
- package/layouts/partials/breadcrumbs.html +28 -2
- package/layouts/partials/featured_story.html +1 -8
- package/layouts/partials/featured_story_popup.html +0 -6
- package/layouts/partials/footer.html +20 -8
- package/layouts/partials/footer_js.html +1 -4
- package/layouts/partials/footer_links/footer-copyright.html +0 -5
- package/layouts/partials/footer_links/footer-eclipse-foundation.html +11 -31
- package/layouts/partials/footer_links/footer-legal.html +12 -28
- package/layouts/partials/footer_links/footer-other.html +10 -27
- package/layouts/partials/footer_links/links.html +0 -8
- package/layouts/partials/footer_links/suffix.html +21 -23
- package/layouts/partials/head.html +10 -15
- package/layouts/partials/header.html +12 -5
- package/layouts/partials/jumbotron.html +91 -5
- package/layouts/partials/main_prefix.html +29 -4
- package/layouts/partials/main_suffix.html +16 -2
- package/layouts/partials/mega_menu.html +53 -3
- package/layouts/partials/mobile_menu.html +95 -5
- package/layouts/partials/nav.html +62 -9
- package/layouts/partials/navbar.html +37 -4
- package/layouts/partials/sidebar.html +68 -5
- package/layouts/partials/socials.html +85 -4
- package/layouts/partials/toolbar.html +65 -3
- package/package.json +3 -3
- package/webpack.mix.js +0 -18
- package/layouts/partials/astro/breadcrumbs.html +0 -42
- package/layouts/partials/astro/footer.html +0 -32
- package/layouts/partials/astro/header.html +0 -24
- package/layouts/partials/astro/jumbotron.html +0 -102
- package/layouts/partials/astro/main_prefix.html +0 -40
- package/layouts/partials/astro/main_suffix.html +0 -30
- package/layouts/partials/astro/mega_menu.html +0 -65
- package/layouts/partials/astro/mobile_menu.html +0 -108
- package/layouts/partials/astro/nav.html +0 -74
- package/layouts/partials/astro/navbar.html +0 -51
- package/layouts/partials/astro/sidebar.html +0 -79
- package/layouts/partials/astro/socials.html +0 -97
- package/layouts/partials/astro/toolbar.html +0 -77
- package/layouts/partials/neptune/breadcrumbs.html +0 -35
- package/layouts/partials/neptune/footer.html +0 -73
- package/layouts/partials/neptune/header.html +0 -24
- package/layouts/partials/neptune/jumbotron.html +0 -90
- package/layouts/partials/neptune/main_prefix.html +0 -38
- package/layouts/partials/neptune/main_suffix.html +0 -13
- package/layouts/partials/neptune/mega_menu.html +0 -61
- package/layouts/partials/neptune/mobile_menu.html +0 -54
- package/layouts/partials/neptune/nav.html +0 -60
- package/layouts/partials/neptune/navbar.html +0 -130
- package/layouts/partials/neptune/sidebar.html +0 -73
- package/layouts/partials/neptune/socials.html +0 -22
- package/layouts/partials/neptune/toolbar.html +0 -11
- package/layouts/partials/quicksilver/breadcrumbs.html +0 -42
- package/layouts/partials/quicksilver/footer.html +0 -26
- package/layouts/partials/quicksilver/header.html +0 -21
- package/layouts/partials/quicksilver/jumbotron.html +0 -66
- package/layouts/partials/quicksilver/main_prefix.html +0 -37
- package/layouts/partials/quicksilver/main_suffix.html +0 -30
- package/layouts/partials/quicksilver/nav.html +0 -70
- package/layouts/partials/quicksilver/navbar.html +0 -74
- package/layouts/partials/quicksilver/sidebar.html +0 -45
- package/layouts/partials/quicksilver/socials.html +0 -91
- package/layouts/partials/quicksilver/toolbar.html +0 -39
package/config.toml
CHANGED
|
@@ -53,539 +53,6 @@
|
|
|
53
53
|
[menus]
|
|
54
54
|
_merge = "shallow"
|
|
55
55
|
|
|
56
|
-
# Neptune Menu
|
|
57
|
-
[[menu.neptune]]
|
|
58
|
-
name = "Join us"
|
|
59
|
-
weight = 1
|
|
60
|
-
identifier = "join-us"
|
|
61
|
-
|
|
62
|
-
[[menu.neptune]]
|
|
63
|
-
name = "Membership"
|
|
64
|
-
weight = 1
|
|
65
|
-
identifier = "membership"
|
|
66
|
-
parent = "join-us"
|
|
67
|
-
pre = "<i class=\"fa-solid fa-user-group\" aria-hidden=\"true\"></i>"
|
|
68
|
-
|
|
69
|
-
[[menu.neptune]]
|
|
70
|
-
name = "Become a member"
|
|
71
|
-
url = "https://www.eclipse.org/membership/"
|
|
72
|
-
weight = 1
|
|
73
|
-
parent = "membership"
|
|
74
|
-
|
|
75
|
-
[[menu.neptune]]
|
|
76
|
-
name = "Review membership fees"
|
|
77
|
-
url = "https://www.eclipse.org/membership#tab-fees"
|
|
78
|
-
weight = 2
|
|
79
|
-
parent = "membership"
|
|
80
|
-
|
|
81
|
-
[[menu.neptune]]
|
|
82
|
-
name = "Access member portal"
|
|
83
|
-
url = "https://membership.eclipse.org/portal"
|
|
84
|
-
weight = 3
|
|
85
|
-
parent = "membership"
|
|
86
|
-
[menu.neptune.params]
|
|
87
|
-
target = "_blank"
|
|
88
|
-
|
|
89
|
-
[[menu.neptune]]
|
|
90
|
-
name = "Sponsorship"
|
|
91
|
-
weight = 2
|
|
92
|
-
identifier = "sponsorship-2"
|
|
93
|
-
parent = "join-us"
|
|
94
|
-
pre = "<i class=\"fa-solid fa-bookmark\" aria-hidden=\"true\"></i>"
|
|
95
|
-
|
|
96
|
-
[[menu.neptune]]
|
|
97
|
-
name = "Support us as a sponsor"
|
|
98
|
-
url = "https://www.eclipse.org/sponsor/"
|
|
99
|
-
weight = 1
|
|
100
|
-
parent = "sponsorship-2"
|
|
101
|
-
|
|
102
|
-
[[menu.neptune]]
|
|
103
|
-
name = "Contribute"
|
|
104
|
-
weight = 3
|
|
105
|
-
identifier = "contribute"
|
|
106
|
-
parent = "join-us"
|
|
107
|
-
pre = "<i class=\"fa-solid fa-handshake-simple\" aria-hidden=\"true\"></i>"
|
|
108
|
-
|
|
109
|
-
[[menu.neptune]]
|
|
110
|
-
name = "How to contribute"
|
|
111
|
-
url = "https://www.eclipse.org/contribute/"
|
|
112
|
-
weight = 1
|
|
113
|
-
parent = "contribute"
|
|
114
|
-
|
|
115
|
-
[[menu.neptune]]
|
|
116
|
-
name = "Committer training"
|
|
117
|
-
url = "https://www.eclipse.org/projects/training/"
|
|
118
|
-
weight = 2
|
|
119
|
-
parent = "contribute"
|
|
120
|
-
|
|
121
|
-
[[menu.neptune]]
|
|
122
|
-
name = "Collaborate with us"
|
|
123
|
-
weight = 4
|
|
124
|
-
identifier = "collaborate-with-us"
|
|
125
|
-
parent = "join-us"
|
|
126
|
-
pre = "<i class=\"fa-solid fa-users\" aria-hidden=\"true\"></i>"
|
|
127
|
-
|
|
128
|
-
[[menu.neptune]]
|
|
129
|
-
name = "Join an existing industry collaboration"
|
|
130
|
-
url = "https://www.eclipse.org/org/working-groups/explore/"
|
|
131
|
-
weight = 1
|
|
132
|
-
parent = "collaborate-with-us"
|
|
133
|
-
|
|
134
|
-
[[menu.neptune]]
|
|
135
|
-
name = "Start a new collaboration"
|
|
136
|
-
url = "https://www.eclipse.org/collaborations/#start-collaboration"
|
|
137
|
-
weight = 2
|
|
138
|
-
parent = "collaborate-with-us"
|
|
139
|
-
|
|
140
|
-
[[menu.neptune]]
|
|
141
|
-
name = "What we do"
|
|
142
|
-
weight = 2
|
|
143
|
-
identifier = "what-we-do"
|
|
144
|
-
|
|
145
|
-
[[menu.neptune]]
|
|
146
|
-
name = "Projects"
|
|
147
|
-
weight = 1
|
|
148
|
-
identifier = "projects"
|
|
149
|
-
parent = "what-we-do"
|
|
150
|
-
pre = "<i class=\"fa-solid fa-puzzle-piece\" aria-hidden=\"true\"></i>"
|
|
151
|
-
|
|
152
|
-
[[menu.neptune]]
|
|
153
|
-
name = "Explore projects"
|
|
154
|
-
url = "https://projects.eclipse.org/"
|
|
155
|
-
weight = 1
|
|
156
|
-
parent = "projects"
|
|
157
|
-
|
|
158
|
-
[[menu.neptune]]
|
|
159
|
-
name = "View specifications"
|
|
160
|
-
url = "https://www.eclipse.org/specifications/"
|
|
161
|
-
weight = 2
|
|
162
|
-
parent = "projects"
|
|
163
|
-
|
|
164
|
-
[[menu.neptune]]
|
|
165
|
-
name = "Industry collaborations"
|
|
166
|
-
weight = 2
|
|
167
|
-
identifier = "industry-collaborations"
|
|
168
|
-
parent = "what-we-do"
|
|
169
|
-
pre = "<i class=\"fa-solid fa-building\" aria-hidden=\"true\"></i>"
|
|
170
|
-
|
|
171
|
-
[[menu.neptune]]
|
|
172
|
-
name = "Explore collaborations"
|
|
173
|
-
url = "https://www.eclipse.org/org/working-groups/explore/"
|
|
174
|
-
weight = 1
|
|
175
|
-
parent = "industry-collaborations"
|
|
176
|
-
|
|
177
|
-
[[menu.neptune]]
|
|
178
|
-
name = "Join a working group"
|
|
179
|
-
url = "https://www.eclipse.org/org/working-groups/about/"
|
|
180
|
-
weight = 2
|
|
181
|
-
parent = "industry-collaborations"
|
|
182
|
-
|
|
183
|
-
[[menu.neptune]]
|
|
184
|
-
name = "Join an interest group"
|
|
185
|
-
url = "https://www.eclipse.org/collaborations/interest-groups/"
|
|
186
|
-
weight = 3
|
|
187
|
-
parent = "industry-collaborations"
|
|
188
|
-
|
|
189
|
-
[[menu.neptune]]
|
|
190
|
-
name = "Read success stories"
|
|
191
|
-
url = "https://www.eclipse.org/org/value/"
|
|
192
|
-
weight = 3
|
|
193
|
-
parent = "industry-collaborations"
|
|
194
|
-
|
|
195
|
-
[[menu.neptune]]
|
|
196
|
-
name = "Core services"
|
|
197
|
-
weight = 3
|
|
198
|
-
identifier = "core-services"
|
|
199
|
-
parent = "what-we-do"
|
|
200
|
-
pre = "<i class=\"fa-solid fa-laptop-code\" aria-hidden=\"true\"></i>"
|
|
201
|
-
|
|
202
|
-
[[menu.neptune]]
|
|
203
|
-
name = "Explore core services"
|
|
204
|
-
url = "https://www.eclipse.org/org/services/"
|
|
205
|
-
weight = 1
|
|
206
|
-
parent = "core-services"
|
|
207
|
-
|
|
208
|
-
[[menu.neptune]]
|
|
209
|
-
name = "Ensure project security"
|
|
210
|
-
url = "https://www.eclipse.org/security/"
|
|
211
|
-
weight = 2
|
|
212
|
-
parent = "core-services"
|
|
213
|
-
|
|
214
|
-
[[menu.neptune]]
|
|
215
|
-
name = "Strategic services"
|
|
216
|
-
weight = 5
|
|
217
|
-
identifier = "strategic-services"
|
|
218
|
-
parent = "what-we-do"
|
|
219
|
-
pre = "<i class=\"fa-solid fa-flag\" aria-hidden=\"true\"></i>"
|
|
220
|
-
[menu.neptune.params]
|
|
221
|
-
style = "grid-column: -3; margin-top: -20rem;"
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
[[menu.neptune]]
|
|
225
|
-
name = "Transform research into open source"
|
|
226
|
-
url = "https://www.eclipse.org/research/"
|
|
227
|
-
weight = 1
|
|
228
|
-
parent = "strategic-services"
|
|
229
|
-
|
|
230
|
-
[[menu.neptune]]
|
|
231
|
-
name = "Engage professional services"
|
|
232
|
-
url = "https://www.eclipse.org/os4biz/services/"
|
|
233
|
-
weight = 2
|
|
234
|
-
parent = "strategic-services"
|
|
235
|
-
|
|
236
|
-
[[menu.neptune]]
|
|
237
|
-
name = "Build your OSPO"
|
|
238
|
-
url = "https://www.eclipse.org/os4biz/ospo/"
|
|
239
|
-
weight = 3
|
|
240
|
-
parent = "strategic-services"
|
|
241
|
-
|
|
242
|
-
[[menu.neptune]]
|
|
243
|
-
name = "Key initiatives"
|
|
244
|
-
weight = 4
|
|
245
|
-
identifier = "key-initiatives"
|
|
246
|
-
parent = "what-we-do"
|
|
247
|
-
pre = "<i class=\"fa-solid fa-bullseye\" aria-hidden=\"true\"></i>"
|
|
248
|
-
|
|
249
|
-
[[menu.neptune]]
|
|
250
|
-
name = "Embedded & IoT"
|
|
251
|
-
url = "https://www.eclipse.org/topics/edge-and-iot/"
|
|
252
|
-
weight = 1
|
|
253
|
-
parent = "key-initiatives"
|
|
254
|
-
|
|
255
|
-
[[menu.neptune]]
|
|
256
|
-
name = "Enterprise Java"
|
|
257
|
-
url = "https://www.eclipse.org/topics/cloud-native/"
|
|
258
|
-
weight = 2
|
|
259
|
-
parent = "key-initiatives"
|
|
260
|
-
|
|
261
|
-
[[menu.neptune]]
|
|
262
|
-
name = "Data sovereignty"
|
|
263
|
-
url = "https://dataspace.eclipse.org/"
|
|
264
|
-
weight = 3
|
|
265
|
-
parent = "key-initiatives"
|
|
266
|
-
|
|
267
|
-
[[menu.neptune]]
|
|
268
|
-
name = "Security & privacy"
|
|
269
|
-
url = "https://www.eclipse.org/security/"
|
|
270
|
-
weight = 4
|
|
271
|
-
parent = "key-initiatives"
|
|
272
|
-
|
|
273
|
-
[[menu.neptune]]
|
|
274
|
-
name = "Developer tools & IDEs"
|
|
275
|
-
url = "https://www.eclipse.org/topics/ide/"
|
|
276
|
-
weight = 5
|
|
277
|
-
parent = "key-initiatives"
|
|
278
|
-
|
|
279
|
-
[[menu.neptune]]
|
|
280
|
-
name = "AI & emerging technologies"
|
|
281
|
-
url = "https://aieclipse.org/"
|
|
282
|
-
weight = 6
|
|
283
|
-
parent = "key-initiatives"
|
|
284
|
-
[menu.neptune.params]
|
|
285
|
-
target = "_blank"
|
|
286
|
-
external = true
|
|
287
|
-
|
|
288
|
-
[[menu.neptune]]
|
|
289
|
-
name = "Automotive & mobility"
|
|
290
|
-
url = "https://www.eclipse.org/topics/automotive-and-mobility/"
|
|
291
|
-
weight = 7
|
|
292
|
-
parent = "key-initiatives"
|
|
293
|
-
|
|
294
|
-
[[menu.neptune]]
|
|
295
|
-
name = "Policy & compliance"
|
|
296
|
-
url = "https://orcwg.org/"
|
|
297
|
-
weight = 8
|
|
298
|
-
parent = "key-initiatives"
|
|
299
|
-
[menu.neptune.params]
|
|
300
|
-
target = "_blank"
|
|
301
|
-
external = true
|
|
302
|
-
|
|
303
|
-
[[menu.neptune]]
|
|
304
|
-
name = "Resources"
|
|
305
|
-
weight = 3
|
|
306
|
-
identifier = "resources"
|
|
307
|
-
pre = "<i class=\"fa-solid fa-list-ul\" aria-hidden=\"true\"></i>"
|
|
308
|
-
|
|
309
|
-
[[menu.neptune]]
|
|
310
|
-
name = "What's happening"
|
|
311
|
-
weight = 1
|
|
312
|
-
identifier = "whats-happening"
|
|
313
|
-
parent = "resources"
|
|
314
|
-
pre = "<i class=\"fa-solid fa-bullhorn\" aria-hidden=\"true\"></i>"
|
|
315
|
-
|
|
316
|
-
[[menu.neptune]]
|
|
317
|
-
name = "Read our blog"
|
|
318
|
-
url = "https://blogs.eclipse.org/"
|
|
319
|
-
weight = 1
|
|
320
|
-
parent = "whats-happening"
|
|
321
|
-
|
|
322
|
-
[[menu.neptune]]
|
|
323
|
-
name = "Join mailing lists"
|
|
324
|
-
url = "https://accounts.eclipse.org/mailing-list"
|
|
325
|
-
weight = 2
|
|
326
|
-
parent = "whats-happening"
|
|
327
|
-
|
|
328
|
-
[[menu.neptune]]
|
|
329
|
-
name = "Get news updates"
|
|
330
|
-
url = "https://newsroom.eclipse.org/"
|
|
331
|
-
weight = 3
|
|
332
|
-
parent = "whats-happening"
|
|
333
|
-
|
|
334
|
-
[[menu.neptune]]
|
|
335
|
-
name = "Subscribe to newsletter"
|
|
336
|
-
url = "https://www.eclipse.org/community/eclipse_newsletter"
|
|
337
|
-
weight = 4
|
|
338
|
-
parent = "whats-happening"
|
|
339
|
-
|
|
340
|
-
[[menu.neptune]]
|
|
341
|
-
name = "Explore OSS global voices"
|
|
342
|
-
url = "https://opensourceglobalvoices.org/"
|
|
343
|
-
weight = 5
|
|
344
|
-
parent = "whats-happening"
|
|
345
|
-
[menu.neptune.params]
|
|
346
|
-
target = "_blank"
|
|
347
|
-
external = true
|
|
348
|
-
|
|
349
|
-
[[menu.neptune]]
|
|
350
|
-
name = "Events"
|
|
351
|
-
weight = 2
|
|
352
|
-
identifier = "events"
|
|
353
|
-
parent = "resources"
|
|
354
|
-
pre = "<i class=\"fa-solid fa-calendar-days\" aria-hidden=\"true\"></i>"
|
|
355
|
-
|
|
356
|
-
[[menu.neptune]]
|
|
357
|
-
name = "Explore events"
|
|
358
|
-
url = "https://events.eclipse.org/"
|
|
359
|
-
weight = 1
|
|
360
|
-
parent = "events"
|
|
361
|
-
|
|
362
|
-
[[menu.neptune]]
|
|
363
|
-
name = "Join a community meetup"
|
|
364
|
-
url = "https://www.eclipse.org/events/open-community-meetups/"
|
|
365
|
-
weight = 2
|
|
366
|
-
parent = "events"
|
|
367
|
-
|
|
368
|
-
[[menu.neptune]]
|
|
369
|
-
name = "Attend a webinar"
|
|
370
|
-
url = "https://www.eclipse.org/events/open-community-webinars/"
|
|
371
|
-
weight = 3
|
|
372
|
-
parent = "events"
|
|
373
|
-
|
|
374
|
-
[[menu.neptune]]
|
|
375
|
-
name = "Join OCX"
|
|
376
|
-
url = "https://www.ocxconf.org/"
|
|
377
|
-
weight = 3
|
|
378
|
-
parent = "events"
|
|
379
|
-
[menu.neptune.params]
|
|
380
|
-
target = "_blank"
|
|
381
|
-
external = true
|
|
382
|
-
|
|
383
|
-
[[menu.neptune]]
|
|
384
|
-
name = "Developer resources"
|
|
385
|
-
weight = 3
|
|
386
|
-
identifier = "developer-resources"
|
|
387
|
-
parent = "resources"
|
|
388
|
-
pre = "<i class=\"fa-solid fa-code\" aria-hidden=\"true\"></i>"
|
|
389
|
-
|
|
390
|
-
[[menu.neptune]]
|
|
391
|
-
name = "Explore projects hub"
|
|
392
|
-
url = "https://www.eclipse.org/projects/"
|
|
393
|
-
weight = 1
|
|
394
|
-
parent = "developer-resources"
|
|
395
|
-
|
|
396
|
-
[[menu.neptune]]
|
|
397
|
-
name = "Attend office hours"
|
|
398
|
-
url = "https://www.eclipse.org/projects/calendar/#office-hours"
|
|
399
|
-
weight = 2
|
|
400
|
-
parent = "developer-resources"
|
|
401
|
-
|
|
402
|
-
[[menu.neptune]]
|
|
403
|
-
name = "Report a vulnerability"
|
|
404
|
-
url = "https://www.eclipse.org/security/"
|
|
405
|
-
weight = 3
|
|
406
|
-
parent = "developer-resources"
|
|
407
|
-
|
|
408
|
-
[[menu.neptune]]
|
|
409
|
-
name = "View known vulnerabilities"
|
|
410
|
-
url = "https://www.eclipse.org/security/known/"
|
|
411
|
-
weight = 4
|
|
412
|
-
parent = "developer-resources"
|
|
413
|
-
|
|
414
|
-
[[menu.neptune]]
|
|
415
|
-
name = "Use the security handbook"
|
|
416
|
-
url = "https://github.com/eclipse-csi/security-handbook/blob/main/docs/vulnerabilities/advisories.md"
|
|
417
|
-
weight = 5
|
|
418
|
-
parent = "developer-resources"
|
|
419
|
-
[menu.neptune.params]
|
|
420
|
-
target = "_blank"
|
|
421
|
-
|
|
422
|
-
[[menu.neptune]]
|
|
423
|
-
name = "Industry insights"
|
|
424
|
-
weight = 4
|
|
425
|
-
identifier = "industry-intelligence-insights"
|
|
426
|
-
parent = "resources"
|
|
427
|
-
pre = "<i class=\"fa-solid fa-gear\" aria-hidden=\"true\"></i>"
|
|
428
|
-
|
|
429
|
-
[[menu.neptune]]
|
|
430
|
-
name = "View case studies"
|
|
431
|
-
url = "https://www.eclipse.org/org/value/#success_stories"
|
|
432
|
-
weight = 1
|
|
433
|
-
parent = "industry-intelligence-insights"
|
|
434
|
-
|
|
435
|
-
[[menu.neptune]]
|
|
436
|
-
name = "View whitepapers"
|
|
437
|
-
url = "https://www.eclipse.org/org/value/#whitepapers"
|
|
438
|
-
weight = 2
|
|
439
|
-
parent = "industry-intelligence-insights"
|
|
440
|
-
|
|
441
|
-
[[menu.neptune]]
|
|
442
|
-
name = "View surveys & reports"
|
|
443
|
-
url = "https://www.eclipse.org/org/value/#surveyReports"
|
|
444
|
-
weight = 3
|
|
445
|
-
parent = "industry-intelligence-insights"
|
|
446
|
-
|
|
447
|
-
[[menu.neptune]]
|
|
448
|
-
name = "Marketplaces"
|
|
449
|
-
weight = 5
|
|
450
|
-
identifier = "marketplaces"
|
|
451
|
-
parent = "resources"
|
|
452
|
-
pre = "<i class=\"fa-solid fa-store\" aria-hidden=\"true\"></i>"
|
|
453
|
-
[menu.neptune.params]
|
|
454
|
-
style = "grid-column: -2; margin-top: -6rem;"
|
|
455
|
-
|
|
456
|
-
[[menu.neptune]]
|
|
457
|
-
name = "Adoptium"
|
|
458
|
-
url = "https://adoptium.net/marketplace"
|
|
459
|
-
weight = 1
|
|
460
|
-
parent = "marketplaces"
|
|
461
|
-
[menu.neptune.params]
|
|
462
|
-
target = "_blank"
|
|
463
|
-
external = true
|
|
464
|
-
|
|
465
|
-
[[menu.neptune]]
|
|
466
|
-
name = "Eclipse IDE"
|
|
467
|
-
url = "https://marketplace.eclipse.org/"
|
|
468
|
-
weight = 2
|
|
469
|
-
parent = "marketplaces"
|
|
470
|
-
[menu.neptune.params]
|
|
471
|
-
target = "_blank"
|
|
472
|
-
external = true
|
|
473
|
-
|
|
474
|
-
[[menu.neptune]]
|
|
475
|
-
name = "Open VSX"
|
|
476
|
-
url = "https://open-vsx.org/"
|
|
477
|
-
weight = 3
|
|
478
|
-
parent = "marketplaces"
|
|
479
|
-
[menu.neptune.params]
|
|
480
|
-
target = "_blank"
|
|
481
|
-
external = true
|
|
482
|
-
|
|
483
|
-
[[menu.neptune]]
|
|
484
|
-
name = "About us"
|
|
485
|
-
weight = 4
|
|
486
|
-
identifier = "about-us"
|
|
487
|
-
|
|
488
|
-
[[menu.neptune]]
|
|
489
|
-
name = "The Foundation"
|
|
490
|
-
weight = 1
|
|
491
|
-
identifier = "the-foundation"
|
|
492
|
-
parent = "about-us"
|
|
493
|
-
pre = "<i class=\"fa-regular fa-moon rotate-90\" aria-hidden=\"true\"></i>"
|
|
494
|
-
|
|
495
|
-
[[menu.neptune]]
|
|
496
|
-
name = "About"
|
|
497
|
-
url = "https://www.eclipse.org/about/"
|
|
498
|
-
weight = 1
|
|
499
|
-
parent = "the-foundation"
|
|
500
|
-
|
|
501
|
-
[[menu.neptune]]
|
|
502
|
-
name = "Meet the team"
|
|
503
|
-
url = "https://www.eclipse.org/org/foundation/staff/"
|
|
504
|
-
weight = 2
|
|
505
|
-
parent = "the-foundation"
|
|
506
|
-
|
|
507
|
-
[[menu.neptune]]
|
|
508
|
-
name = "Board & governance"
|
|
509
|
-
url = "https://www.eclipse.org/org/governance/"
|
|
510
|
-
weight = 3
|
|
511
|
-
parent = "the-foundation"
|
|
512
|
-
|
|
513
|
-
[[menu.neptune]]
|
|
514
|
-
name = "Our members"
|
|
515
|
-
weight = 2
|
|
516
|
-
identifier = "our-members"
|
|
517
|
-
parent = "about-us"
|
|
518
|
-
pre = "<i class=\"fa-solid fa-user-group\" aria-hidden=\"true\"></i>"
|
|
519
|
-
|
|
520
|
-
[[menu.neptune]]
|
|
521
|
-
name = "Become a member"
|
|
522
|
-
url = "https://www.eclipse.org/membership/"
|
|
523
|
-
weight = 1
|
|
524
|
-
identifier = "our-members-become-a-member"
|
|
525
|
-
parent = "our-members"
|
|
526
|
-
|
|
527
|
-
[[menu.neptune]]
|
|
528
|
-
name = "View member directory"
|
|
529
|
-
url = "https://www.eclipse.org/membership/explore-membership/"
|
|
530
|
-
weight = 2
|
|
531
|
-
identifier = "our-members-view-member-directory"
|
|
532
|
-
parent = "our-members"
|
|
533
|
-
|
|
534
|
-
[[menu.neptune]]
|
|
535
|
-
name = "Access member portal"
|
|
536
|
-
url = "https://membership.eclipse.org/portal"
|
|
537
|
-
weight = 3
|
|
538
|
-
identifier = "our-members-access-member-portal"
|
|
539
|
-
parent = "our-members"
|
|
540
|
-
[menu.neptune.params]
|
|
541
|
-
target = "_blank"
|
|
542
|
-
|
|
543
|
-
[[menu.neptune]]
|
|
544
|
-
name = "Sponsorship"
|
|
545
|
-
weight = 3
|
|
546
|
-
identifier = "sponsorship"
|
|
547
|
-
parent = "about-us"
|
|
548
|
-
pre = "<i class=\"fa-regular fa-bookmark\" aria-hidden=\"true\"></i>"
|
|
549
|
-
|
|
550
|
-
[[menu.neptune]]
|
|
551
|
-
name = "Become a sponsor"
|
|
552
|
-
url = "https://www.eclipse.org/sponsor/"
|
|
553
|
-
weight = 1
|
|
554
|
-
parent = "sponsorship"
|
|
555
|
-
|
|
556
|
-
[[menu.neptune]]
|
|
557
|
-
name = "Sponsor directory"
|
|
558
|
-
url = "https://www.eclipse.org/org/our-sponsors/"
|
|
559
|
-
weight = 2
|
|
560
|
-
parent = "sponsorship"
|
|
561
|
-
|
|
562
|
-
[[menu.neptune]]
|
|
563
|
-
name = "More"
|
|
564
|
-
weight = 4
|
|
565
|
-
identifier = "more"
|
|
566
|
-
parent = "about-us"
|
|
567
|
-
pre = "<i class=\"fa-solid fa-cube\" aria-hidden=\"true\"></i>"
|
|
568
|
-
|
|
569
|
-
[[menu.neptune]]
|
|
570
|
-
name = "Join our team"
|
|
571
|
-
url = "https://www.eclipse.org/careers/"
|
|
572
|
-
weight = 1
|
|
573
|
-
parent = "more"
|
|
574
|
-
|
|
575
|
-
[[menu.neptune]]
|
|
576
|
-
name = "Explore our brand"
|
|
577
|
-
url = "https://www.eclipse.org/org/artwork/"
|
|
578
|
-
weight = 2
|
|
579
|
-
parent = "more"
|
|
580
|
-
|
|
581
|
-
[[menu.neptune]]
|
|
582
|
-
name = "Contact us"
|
|
583
|
-
url = "https://www.eclipse.org/org/foundation/contact.php"
|
|
584
|
-
weight = 3
|
|
585
|
-
parent = "more"
|
|
586
|
-
|
|
587
|
-
# Astro Menu
|
|
588
|
-
|
|
589
56
|
[[menu.astro]]
|
|
590
57
|
name = "Projects"
|
|
591
58
|
weight = 1
|
|
@@ -997,130 +464,3 @@
|
|
|
997
464
|
url = "https://www.eclipse.org/org/foundation/contact.php"
|
|
998
465
|
weight = 4
|
|
999
466
|
parent="the-foundation-more"
|
|
1000
|
-
|
|
1001
|
-
# Quicksilver Menu
|
|
1002
|
-
|
|
1003
|
-
[[menu.quicksilver]]
|
|
1004
|
-
name = "Projects"
|
|
1005
|
-
url = "https://www.eclipse.org/projects/"
|
|
1006
|
-
weight = 1
|
|
1007
|
-
|
|
1008
|
-
[[menu.quicksilver]]
|
|
1009
|
-
name = "Working Groups"
|
|
1010
|
-
url = "https://www.eclipse.org/org/workinggroups/"
|
|
1011
|
-
weight = 2
|
|
1012
|
-
|
|
1013
|
-
[[menu.quicksilver]]
|
|
1014
|
-
name = "Members"
|
|
1015
|
-
url = "https://www.eclipse.org/membership/"
|
|
1016
|
-
weight = 2
|
|
1017
|
-
|
|
1018
|
-
# Neptune Footer
|
|
1019
|
-
|
|
1020
|
-
[[menu.footer]]
|
|
1021
|
-
name = "Eclipse Foundation"
|
|
1022
|
-
identifier = "eclipse-foundation"
|
|
1023
|
-
weight = 1
|
|
1024
|
-
|
|
1025
|
-
[[menu.footer]]
|
|
1026
|
-
name = "About"
|
|
1027
|
-
url = "https://www.eclipse.org/org/"
|
|
1028
|
-
parent = "eclipse-foundation"
|
|
1029
|
-
weight = 1
|
|
1030
|
-
|
|
1031
|
-
[[menu.footer]]
|
|
1032
|
-
name = "Projects"
|
|
1033
|
-
url = "https://projects.eclipse.org/"
|
|
1034
|
-
parent = "eclipse-foundation"
|
|
1035
|
-
weight = 2
|
|
1036
|
-
|
|
1037
|
-
[[menu.footer]]
|
|
1038
|
-
name = "Collaborations"
|
|
1039
|
-
url = "https://www.eclipse.org/collaborations/"
|
|
1040
|
-
parent = "eclipse-foundation"
|
|
1041
|
-
weight = 3
|
|
1042
|
-
|
|
1043
|
-
[[menu.footer]]
|
|
1044
|
-
name = "Membership"
|
|
1045
|
-
url = "https://www.eclipse.org/membership/"
|
|
1046
|
-
parent = "eclipse-foundation"
|
|
1047
|
-
weight = 4
|
|
1048
|
-
|
|
1049
|
-
[[menu.footer]]
|
|
1050
|
-
name = "Sponsor"
|
|
1051
|
-
url = "https://www.eclipse.org/sponsor/"
|
|
1052
|
-
parent = "eclipse-foundation"
|
|
1053
|
-
weight = 5
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
[[menu.footer]]
|
|
1057
|
-
name = "Legal"
|
|
1058
|
-
identifier = "legal"
|
|
1059
|
-
weight = 2
|
|
1060
|
-
|
|
1061
|
-
[[menu.footer]]
|
|
1062
|
-
name = "Privacy Policy"
|
|
1063
|
-
url = "https://www.eclipse.org/legal/privacy/"
|
|
1064
|
-
parent = "legal"
|
|
1065
|
-
weight = 1
|
|
1066
|
-
|
|
1067
|
-
[[menu.footer]]
|
|
1068
|
-
name = "Terms of Use"
|
|
1069
|
-
url = "https://www.eclipse.org/legal/terms-of-use/"
|
|
1070
|
-
parent = "legal"
|
|
1071
|
-
weight = 2
|
|
1072
|
-
|
|
1073
|
-
[[menu.footer]]
|
|
1074
|
-
name = "Compliance"
|
|
1075
|
-
url = "https://www.eclipse.org/legal/compliance/"
|
|
1076
|
-
parent = "legal"
|
|
1077
|
-
weight = 3
|
|
1078
|
-
|
|
1079
|
-
[[menu.footer]]
|
|
1080
|
-
name = "Code of Conduct"
|
|
1081
|
-
url = "https://www.eclipse.org/org/documents/Community_Code_of_Conduct.php"
|
|
1082
|
-
parent = "legal"
|
|
1083
|
-
weight = 4
|
|
1084
|
-
|
|
1085
|
-
[[menu.footer]]
|
|
1086
|
-
name = "Legal Resources"
|
|
1087
|
-
url = "https://www.eclipse.org/legal/"
|
|
1088
|
-
parent = "legal"
|
|
1089
|
-
weight = 5
|
|
1090
|
-
|
|
1091
|
-
[[menu.footer]]
|
|
1092
|
-
name = "Manage Cookies"
|
|
1093
|
-
parent = "legal"
|
|
1094
|
-
weight = 6
|
|
1095
|
-
[menu.footer.params]
|
|
1096
|
-
class = "toolbar-manage-cookies"
|
|
1097
|
-
|
|
1098
|
-
[[menu.footer]]
|
|
1099
|
-
name = "More"
|
|
1100
|
-
identifier = "more"
|
|
1101
|
-
weight = 3
|
|
1102
|
-
|
|
1103
|
-
[[menu.footer]]
|
|
1104
|
-
name = "Report a Vulnerability"
|
|
1105
|
-
url = "https://www.eclipse.org/security/"
|
|
1106
|
-
parent = "more"
|
|
1107
|
-
weight = 1
|
|
1108
|
-
|
|
1109
|
-
[[menu.footer]]
|
|
1110
|
-
name = "Service Status"
|
|
1111
|
-
url = "https://status.eclipse.org/"
|
|
1112
|
-
parent = "more"
|
|
1113
|
-
weight = 2
|
|
1114
|
-
|
|
1115
|
-
[[menu.footer]]
|
|
1116
|
-
name = "Contact Us"
|
|
1117
|
-
url = "https://www.eclipse.org/org/foundation/contact.php"
|
|
1118
|
-
parent = "more"
|
|
1119
|
-
weight = 3
|
|
1120
|
-
|
|
1121
|
-
[[menu.footer]]
|
|
1122
|
-
name = "Support"
|
|
1123
|
-
url = "https://www.eclipse.org/projects/support/"
|
|
1124
|
-
parent = "more"
|
|
1125
|
-
weight = 4
|
|
1126
|
-
|
|
@@ -15,9 +15,8 @@ baseURL = "https://webdev.eclipse.org/docs/hugo"
|
|
|
15
15
|
keywords = ["hugo", "solstice", "eclipse foundation"]
|
|
16
16
|
# logo = "images/logo/eclipse-foundation-white.svg"
|
|
17
17
|
# favicon = "images/favicon.ico"
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
js = "js/neptune.js"
|
|
18
|
+
styles = "css/astro.css"
|
|
19
|
+
js = "js/astro.js"
|
|
21
20
|
gcse = "011805775785170369411:p3ec0igo0qq"
|
|
22
21
|
gcse_result_url = "/search"
|
|
23
22
|
# eclipse_search_icon = "<i data-feather=\"search\" stroke-width=\"1\"></i>"
|
|
@@ -19,7 +19,6 @@
|
|
|
19
19
|
</head>
|
|
20
20
|
<body {{ with .Page.Params.body_class -}}class="{{ . }}"{{- end }}>
|
|
21
21
|
{{ block "header" . }}{{ partial "header.html" . }}{{ end }}
|
|
22
|
-
{{ block "breadcrumbs" . }}{{ if and (and (ne .Page.Params.hide_breadcrumb true) (ne .Site.Params.hide_breadcrumb true)) (eq (.Site.Params.layout_style | default "quicksilver") "quicksilver") }}{{ partial "breadcrumbs.html" . }}{{end}}{{ end }}
|
|
23
22
|
{{ block "featured_story" . }}{{ partial "featured_story.html" . }}{{ end }}
|
|
24
23
|
{{ block "main_prefix" . }}{{ partial "main_prefix.html" . }}{{ end }}
|
|
25
24
|
{{ block "main" . }}{{ .Content }}{{ end }}
|