eclipsefdn-hugo-solstice-theme 0.1.21 → 0.2.1
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 +697 -76
- package/exampleSite/config/_default/config.toml +3 -3
- package/exampleSite/config/_default/menus.en.toml +6 -0
- package/exampleSite/content/_index.md +1 -1
- package/exampleSite/content/single_page/index.md +6 -2
- package/exampleSite/data/doc_params.yml +5 -0
- package/layouts/_default/list.html +5 -3
- package/layouts/_default/summary.html +6 -7
- package/layouts/partials/astro/breadcrumbs.html +42 -0
- package/layouts/partials/astro/main_suffix.html +30 -0
- package/layouts/partials/breadcrumbs.html +2 -31
- package/layouts/partials/featured_footer.html +4 -4
- package/layouts/partials/featured_story.html +1 -1
- package/layouts/partials/main_suffix.html +2 -15
- package/layouts/partials/mobile_menu.html +1 -1
- package/layouts/partials/nav.html +2 -0
- package/layouts/partials/neptune/breadcrumbs.html +35 -0
- package/layouts/partials/neptune/footer.html +67 -0
- package/layouts/partials/neptune/header.html +24 -0
- package/layouts/partials/neptune/jumbotron.html +89 -0
- package/layouts/partials/neptune/main_prefix.html +38 -0
- package/layouts/partials/neptune/main_suffix.html +13 -0
- package/layouts/partials/neptune/mega_menu.html +61 -0
- package/layouts/partials/neptune/mobile_menu.html +54 -0
- package/layouts/partials/neptune/nav.html +62 -0
- package/layouts/partials/neptune/navbar.html +130 -0
- package/layouts/partials/neptune/sidebar.html +73 -0
- package/layouts/partials/neptune/socials.html +22 -0
- package/layouts/partials/neptune/toolbar.html +11 -0
- package/layouts/partials/quicksilver/breadcrumbs.html +42 -0
- package/layouts/partials/quicksilver/main_suffix.html +30 -0
- package/package.json +2 -2
- package/webpack.mix.js +10 -0
package/config.toml
CHANGED
|
@@ -48,18 +48,531 @@
|
|
|
48
48
|
bluesky = "eclipsefdn.bsky.social"
|
|
49
49
|
|
|
50
50
|
# This is the default menus configuration for all websites consuming the theme.
|
|
51
|
-
# It will be discarded if
|
|
51
|
+
# It will be discarded if menu.main is defined at the site-level.
|
|
52
52
|
|
|
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 = "Events"
|
|
342
|
+
weight = 2
|
|
343
|
+
identifier = "events"
|
|
344
|
+
parent = "resources"
|
|
345
|
+
pre = "<i class=\"fa-solid fa-calendar-days\" aria-hidden=\"true\"></i>"
|
|
346
|
+
|
|
347
|
+
[[menu.neptune]]
|
|
348
|
+
name = "Explore events"
|
|
349
|
+
url = "https://events.eclipse.org/"
|
|
350
|
+
weight = 1
|
|
351
|
+
parent = "events"
|
|
352
|
+
|
|
353
|
+
[[menu.neptune]]
|
|
354
|
+
name = "Join a community meetup"
|
|
355
|
+
url = "https://www.eclipse.org/events/open-community-meetups/"
|
|
356
|
+
weight = 2
|
|
357
|
+
parent = "events"
|
|
358
|
+
|
|
359
|
+
[[menu.neptune]]
|
|
360
|
+
name = "Attend a webinar"
|
|
361
|
+
url = "https://www.eclipse.org/events/open-community-webinars/"
|
|
362
|
+
weight = 3
|
|
363
|
+
parent = "events"
|
|
364
|
+
|
|
365
|
+
[[menu.neptune]]
|
|
366
|
+
name = "Join OCX"
|
|
367
|
+
url = "https://www.ocxconf.org/"
|
|
368
|
+
weight = 3
|
|
369
|
+
parent = "events"
|
|
370
|
+
[menu.neptune.params]
|
|
371
|
+
target = "_blank"
|
|
372
|
+
external = true
|
|
373
|
+
|
|
374
|
+
[[menu.neptune]]
|
|
375
|
+
name = "Developer resources"
|
|
376
|
+
weight = 3
|
|
377
|
+
identifier = "developer-resources"
|
|
378
|
+
parent = "resources"
|
|
379
|
+
pre = "<i class=\"fa-solid fa-code\" aria-hidden=\"true\"></i>"
|
|
380
|
+
|
|
381
|
+
[[menu.neptune]]
|
|
382
|
+
name = "Explore projects hub"
|
|
383
|
+
url = "https://www.eclipse.org/projects/"
|
|
384
|
+
weight = 1
|
|
385
|
+
parent = "developer-resources"
|
|
386
|
+
|
|
387
|
+
[[menu.neptune]]
|
|
388
|
+
name = "Attend office hours"
|
|
389
|
+
url = "https://www.eclipse.org/projects/calendar/#office-hours"
|
|
390
|
+
weight = 2
|
|
391
|
+
parent = "developer-resources"
|
|
392
|
+
|
|
393
|
+
[[menu.neptune]]
|
|
394
|
+
name = "Report a vulnerability"
|
|
395
|
+
url = "https://www.eclipse.org/security/"
|
|
396
|
+
weight = 3
|
|
397
|
+
parent = "developer-resources"
|
|
398
|
+
|
|
399
|
+
[[menu.neptune]]
|
|
400
|
+
name = "View known vulnerabilities"
|
|
401
|
+
url = "https://www.eclipse.org/security/known/"
|
|
402
|
+
weight = 4
|
|
403
|
+
parent = "developer-resources"
|
|
404
|
+
|
|
405
|
+
[[menu.neptune]]
|
|
406
|
+
name = "Use the security handbook"
|
|
407
|
+
url = "https://github.com/eclipse-csi/security-handbook/blob/main/docs/vulnerabilities/advisories.md"
|
|
408
|
+
weight = 5
|
|
409
|
+
parent = "developer-resources"
|
|
410
|
+
[menu.neptune.params]
|
|
411
|
+
target = "_blank"
|
|
412
|
+
|
|
413
|
+
[[menu.neptune]]
|
|
414
|
+
name = "Industry insights"
|
|
415
|
+
weight = 4
|
|
416
|
+
identifier = "industry-intelligence-insights"
|
|
417
|
+
parent = "resources"
|
|
418
|
+
pre = "<i class=\"fa-solid fa-gear\" aria-hidden=\"true\"></i>"
|
|
419
|
+
|
|
420
|
+
[[menu.neptune]]
|
|
421
|
+
name = "View case studies"
|
|
422
|
+
url = "https://www.eclipse.org/org/value/#success_stories"
|
|
423
|
+
weight = 1
|
|
424
|
+
parent = "industry-intelligence-insights"
|
|
425
|
+
|
|
426
|
+
[[menu.neptune]]
|
|
427
|
+
name = "View whitepapers"
|
|
428
|
+
url = "https://www.eclipse.org/org/value/#whitepapers"
|
|
429
|
+
weight = 2
|
|
430
|
+
parent = "industry-intelligence-insights"
|
|
431
|
+
|
|
432
|
+
[[menu.neptune]]
|
|
433
|
+
name = "View surveys & reports"
|
|
434
|
+
url = "https://www.eclipse.org/org/value/#surveyReports"
|
|
435
|
+
weight = 3
|
|
436
|
+
parent = "industry-intelligence-insights"
|
|
437
|
+
|
|
438
|
+
[[menu.neptune]]
|
|
439
|
+
name = "Marketplaces"
|
|
440
|
+
weight = 5
|
|
441
|
+
identifier = "marketplaces"
|
|
442
|
+
parent = "resources"
|
|
443
|
+
pre = "<i class=\"fa-solid fa-store\" aria-hidden=\"true\"></i>"
|
|
444
|
+
[menu.neptune.params]
|
|
445
|
+
style = "grid-column: -2; margin-top: -6rem;"
|
|
446
|
+
|
|
447
|
+
[[menu.neptune]]
|
|
448
|
+
name = "Adoptium"
|
|
449
|
+
url = "https://adoptium.net/"
|
|
450
|
+
weight = 1
|
|
451
|
+
parent = "marketplaces"
|
|
452
|
+
|
|
453
|
+
[[menu.neptune]]
|
|
454
|
+
name = "Eclipse IDE"
|
|
455
|
+
url = "https://marketplace.eclipse.org/"
|
|
456
|
+
weight = 2
|
|
457
|
+
parent = "marketplaces"
|
|
458
|
+
|
|
459
|
+
[[menu.neptune]]
|
|
460
|
+
name = "Open VSX"
|
|
461
|
+
url = "https://open-vsx.org/"
|
|
462
|
+
weight = 3
|
|
463
|
+
parent = "marketplaces"
|
|
464
|
+
|
|
465
|
+
[[menu.neptune]]
|
|
466
|
+
name = "About us"
|
|
467
|
+
weight = 4
|
|
468
|
+
identifier = "about-us"
|
|
469
|
+
|
|
470
|
+
[[menu.neptune]]
|
|
471
|
+
name = "The Foundation"
|
|
472
|
+
weight = 1
|
|
473
|
+
identifier = "the-foundation"
|
|
474
|
+
parent = "about-us"
|
|
475
|
+
pre = "<i class=\"fa-regular fa-moon rotate-90\" aria-hidden=\"true\"></i>"
|
|
476
|
+
|
|
477
|
+
[[menu.neptune]]
|
|
478
|
+
name = "About"
|
|
479
|
+
url = "https://www.eclipse.org/about/"
|
|
480
|
+
weight = 1
|
|
481
|
+
parent = "the-foundation"
|
|
482
|
+
|
|
483
|
+
[[menu.neptune]]
|
|
484
|
+
name = "Meet the team"
|
|
485
|
+
url = "https://www.eclipse.org/org/foundation/staff/"
|
|
486
|
+
weight = 2
|
|
487
|
+
parent = "the-foundation"
|
|
488
|
+
|
|
489
|
+
[[menu.neptune]]
|
|
490
|
+
name = "Board & governance"
|
|
491
|
+
url = "https://www.eclipse.org/org/governance/"
|
|
492
|
+
weight = 3
|
|
493
|
+
parent = "the-foundation"
|
|
494
|
+
|
|
495
|
+
[[menu.neptune]]
|
|
496
|
+
name = "Our members"
|
|
497
|
+
weight = 2
|
|
498
|
+
identifier = "our-members"
|
|
499
|
+
parent = "about-us"
|
|
500
|
+
pre = "<i class=\"fa-solid fa-user-group\" aria-hidden=\"true\"></i>"
|
|
501
|
+
|
|
502
|
+
[[menu.neptune]]
|
|
503
|
+
name = "Become a member"
|
|
504
|
+
url = "https://www.eclipse.org/membership/"
|
|
505
|
+
weight = 1
|
|
506
|
+
identifier = "our-members-become-a-member"
|
|
507
|
+
parent = "our-members"
|
|
508
|
+
|
|
509
|
+
[[menu.neptune]]
|
|
510
|
+
name = "View member directory"
|
|
511
|
+
url = "https://www.eclipse.org/membership/explore-membership/"
|
|
512
|
+
weight = 2
|
|
513
|
+
identifier = "our-members-view-member-directory"
|
|
514
|
+
parent = "our-members"
|
|
515
|
+
|
|
516
|
+
[[menu.neptune]]
|
|
517
|
+
name = "Access member portal"
|
|
518
|
+
url = "https://membership.eclipse.org/portal"
|
|
519
|
+
weight = 3
|
|
520
|
+
identifier = "our-members-access-member-portal"
|
|
521
|
+
parent = "our-members"
|
|
522
|
+
[menu.neptune.params]
|
|
523
|
+
target = "_blank"
|
|
524
|
+
|
|
525
|
+
[[menu.neptune]]
|
|
526
|
+
name = "Sponsorship"
|
|
527
|
+
weight = 3
|
|
528
|
+
identifier = "sponsorship"
|
|
529
|
+
parent = "about-us"
|
|
530
|
+
pre = "<i class=\"fa-regular fa-bookmark\" aria-hidden=\"true\"></i>"
|
|
531
|
+
|
|
532
|
+
[[menu.neptune]]
|
|
533
|
+
name = "Become a sponsor"
|
|
534
|
+
url = "https://www.eclipse.org/sponsor/"
|
|
535
|
+
weight = 1
|
|
536
|
+
parent = "sponsorship"
|
|
537
|
+
|
|
538
|
+
[[menu.neptune]]
|
|
539
|
+
name = "Sponsor directory"
|
|
540
|
+
url = "https://www.eclipse.org/org/our-sponsors/"
|
|
541
|
+
weight = 2
|
|
542
|
+
parent = "sponsorship"
|
|
543
|
+
|
|
544
|
+
[[menu.neptune]]
|
|
545
|
+
name = "More"
|
|
546
|
+
weight = 4
|
|
547
|
+
identifier = "more"
|
|
548
|
+
parent = "about-us"
|
|
549
|
+
pre = "<i class=\"fa-solid fa-cube\" aria-hidden=\"true\"></i>"
|
|
550
|
+
|
|
551
|
+
[[menu.neptune]]
|
|
552
|
+
name = "Join our team"
|
|
553
|
+
url = "https://www.eclipse.org/careers/"
|
|
554
|
+
weight = 1
|
|
555
|
+
parent = "more"
|
|
556
|
+
|
|
557
|
+
[[menu.neptune]]
|
|
558
|
+
name = "Explore our brand"
|
|
559
|
+
url = "https://www.eclipse.org/org/artwork/"
|
|
560
|
+
weight = 2
|
|
561
|
+
parent = "more"
|
|
562
|
+
|
|
563
|
+
[[menu.neptune]]
|
|
564
|
+
name = "Contact us"
|
|
565
|
+
url = "https://www.eclipse.org/org/foundation/contact.php"
|
|
566
|
+
weight = 3
|
|
567
|
+
parent = "more"
|
|
568
|
+
|
|
56
569
|
# Astro Menu
|
|
57
570
|
|
|
58
|
-
[[
|
|
571
|
+
[[menu.astro]]
|
|
59
572
|
name = "Projects"
|
|
60
573
|
weight = 1
|
|
61
574
|
identifier = "projects"
|
|
62
|
-
[
|
|
575
|
+
[menu.astro.params]
|
|
63
576
|
description = """
|
|
64
577
|
The Eclipse Foundation is home to the Eclipse IDE, Jakarta EE, and
|
|
65
578
|
hundreds of open source projects, including runtimes, tools,
|
|
@@ -68,148 +581,148 @@
|
|
|
68
581
|
"""
|
|
69
582
|
|
|
70
583
|
|
|
71
|
-
[[
|
|
584
|
+
[[menu.astro]]
|
|
72
585
|
name = "Technologies"
|
|
73
586
|
weight = 1
|
|
74
587
|
identifier = "projects-technologies"
|
|
75
588
|
parent = "projects"
|
|
76
589
|
|
|
77
|
-
[[
|
|
590
|
+
[[menu.astro]]
|
|
78
591
|
name = "Developer Tools & IDEs"
|
|
79
592
|
url = "https://www.eclipse.org/topics/ide/"
|
|
80
593
|
weight = 1
|
|
81
594
|
parent = "projects-technologies"
|
|
82
595
|
|
|
83
|
-
[[
|
|
596
|
+
[[menu.astro]]
|
|
84
597
|
name = "Cloud Native"
|
|
85
598
|
url = "https://www.eclipse.org/topics/cloud-native/"
|
|
86
599
|
weight = 2
|
|
87
600
|
parent = "projects-technologies"
|
|
88
601
|
|
|
89
|
-
[[
|
|
602
|
+
[[menu.astro]]
|
|
90
603
|
name = "Edge & IoT"
|
|
91
604
|
url = "https://www.eclipse.org/topics/edge-and-iot/"
|
|
92
605
|
weight = 3
|
|
93
606
|
parent = "projects-technologies"
|
|
94
607
|
|
|
95
|
-
[[
|
|
608
|
+
[[menu.astro]]
|
|
96
609
|
name = "Automotive & Mobility"
|
|
97
610
|
url = "https://www.eclipse.org/topics/automotive-and-mobility/"
|
|
98
611
|
weight = 4
|
|
99
612
|
parent = "projects-technologies"
|
|
100
613
|
|
|
101
|
-
[[
|
|
614
|
+
[[menu.astro]]
|
|
102
615
|
name = "Projects"
|
|
103
616
|
weight = 2
|
|
104
617
|
identifier = "projects-projects"
|
|
105
618
|
parent = "projects"
|
|
106
619
|
|
|
107
|
-
[[
|
|
620
|
+
[[menu.astro]]
|
|
108
621
|
name = "Project Finder"
|
|
109
622
|
url = "https://projects.eclipse.org/"
|
|
110
623
|
weight = 1
|
|
111
624
|
parent = "projects-projects"
|
|
112
625
|
|
|
113
|
-
[[
|
|
626
|
+
[[menu.astro]]
|
|
114
627
|
name = "Project Activity"
|
|
115
628
|
url = "https://www.eclipse.org/projects/project_activity.php"
|
|
116
629
|
weight = 2
|
|
117
630
|
parent = "projects-projects"
|
|
118
631
|
|
|
119
|
-
[[
|
|
632
|
+
[[menu.astro]]
|
|
120
633
|
name = "Project Resources"
|
|
121
634
|
url = "https://www.eclipse.org/projects/resources/"
|
|
122
635
|
weight = 3
|
|
123
636
|
parent = "projects-projects"
|
|
124
637
|
|
|
125
|
-
[[
|
|
638
|
+
[[menu.astro]]
|
|
126
639
|
name = "Specifications"
|
|
127
640
|
url = "https://www.eclipse.org/specifications/"
|
|
128
641
|
weight = 4
|
|
129
642
|
parent = "projects-projects"
|
|
130
643
|
|
|
131
|
-
[[
|
|
644
|
+
[[menu.astro]]
|
|
132
645
|
name = "Contribute"
|
|
133
646
|
url = "https://www.eclipse.org/contribute/"
|
|
134
647
|
weight = 5
|
|
135
648
|
parent = "projects-projects"
|
|
136
649
|
|
|
137
|
-
[[
|
|
650
|
+
[[menu.astro]]
|
|
138
651
|
name = "Supporters"
|
|
139
652
|
weight = 2
|
|
140
653
|
identifier = "supporters"
|
|
141
|
-
[
|
|
654
|
+
[menu.astro.params]
|
|
142
655
|
description = """
|
|
143
656
|
The Eclipse Foundation is an international non-profit association
|
|
144
657
|
supported by our members, including industry leaders who value open
|
|
145
658
|
source as a key enabler for their business strategies.
|
|
146
659
|
"""
|
|
147
660
|
|
|
148
|
-
[[
|
|
661
|
+
[[menu.astro]]
|
|
149
662
|
name = "Membership"
|
|
150
663
|
weight = 1
|
|
151
664
|
identifier = "supporters-membership"
|
|
152
665
|
parent = "supporters"
|
|
153
666
|
|
|
154
|
-
[[
|
|
667
|
+
[[menu.astro]]
|
|
155
668
|
name = "Our Members"
|
|
156
669
|
url = "https://www.eclipse.org/membership/explore-membership/"
|
|
157
670
|
weight = 1
|
|
158
671
|
parent = "supporters-membership"
|
|
159
672
|
|
|
160
|
-
[[
|
|
673
|
+
[[menu.astro]]
|
|
161
674
|
name = "Member Benefits"
|
|
162
675
|
url = "https://www.eclipse.org/membership/"
|
|
163
676
|
weight = 2
|
|
164
677
|
parent = "supporters-membership"
|
|
165
678
|
|
|
166
|
-
[[
|
|
679
|
+
[[menu.astro]]
|
|
167
680
|
name = "Membership Levels & Fees"
|
|
168
|
-
url = "https://www.eclipse.org/membership
|
|
681
|
+
url = "https://www.eclipse.org/membership#tab-levels"
|
|
169
682
|
weight = 3
|
|
170
683
|
parent = "supporters-membership"
|
|
171
684
|
|
|
172
|
-
[[
|
|
685
|
+
[[menu.astro]]
|
|
173
686
|
name = "Membership Application"
|
|
174
|
-
url = "https://www.eclipse.org/membership
|
|
687
|
+
url = "https://www.eclipse.org/membership#tab-membership"
|
|
175
688
|
weight = 4
|
|
176
689
|
parent = "supporters-membership"
|
|
177
690
|
|
|
178
|
-
[[
|
|
691
|
+
[[menu.astro]]
|
|
179
692
|
name = "Member Resources"
|
|
180
|
-
url = "https://www.eclipse.org/membership
|
|
693
|
+
url = "https://www.eclipse.org/membership#tab-resources"
|
|
181
694
|
weight = 5
|
|
182
695
|
parent = "supporters-membership"
|
|
183
696
|
|
|
184
|
-
[[
|
|
697
|
+
[[menu.astro]]
|
|
185
698
|
name = "Member Portal"
|
|
186
699
|
url = "https://membership.eclipse.org/portal"
|
|
187
700
|
weight = 6
|
|
188
701
|
parent = "supporters-membership"
|
|
189
702
|
|
|
190
|
-
[[
|
|
703
|
+
[[menu.astro]]
|
|
191
704
|
name = "Sponsorship"
|
|
192
705
|
weight = 1
|
|
193
706
|
identifier = "supporters-sponsorship"
|
|
194
707
|
parent = "supporters"
|
|
195
708
|
|
|
196
|
-
[[
|
|
709
|
+
[[menu.astro]]
|
|
197
710
|
name = "Become a Sponsor"
|
|
198
711
|
url = "https://www.eclipse.org/sponsor/"
|
|
199
712
|
weight = 1
|
|
200
713
|
parent = "supporters-sponsorship"
|
|
201
714
|
|
|
202
|
-
[[
|
|
715
|
+
[[menu.astro]]
|
|
203
716
|
name = "Sponsor Directory"
|
|
204
717
|
url = "https://www.eclipse.org/org/our-sponsors/"
|
|
205
718
|
weight = 2
|
|
206
719
|
parent = "supporters-sponsorship"
|
|
207
720
|
|
|
208
|
-
[[
|
|
721
|
+
[[menu.astro]]
|
|
209
722
|
name = "Collaborations"
|
|
210
723
|
weight = 3
|
|
211
724
|
identifier = "collaborations"
|
|
212
|
-
[
|
|
725
|
+
[menu.astro.params]
|
|
213
726
|
description = """
|
|
214
727
|
Whether you intend on contributing to Eclipse technologies that are
|
|
215
728
|
important to your product strategy, or simply want to explore a specific
|
|
@@ -217,251 +730,251 @@
|
|
|
217
730
|
the open source home for industry collaboration.
|
|
218
731
|
"""
|
|
219
732
|
|
|
220
|
-
[[
|
|
733
|
+
[[menu.astro]]
|
|
221
734
|
name = "Industry Collaborations"
|
|
222
735
|
weight = 1
|
|
223
736
|
parent = "collaborations"
|
|
224
737
|
identifier = "collaborations-industry-collaborations"
|
|
225
738
|
|
|
226
|
-
[[
|
|
739
|
+
[[menu.astro]]
|
|
227
740
|
name = "About Industry Collaborations"
|
|
228
741
|
url = "https://www.eclipse.org/collaborations/"
|
|
229
742
|
weight = 1
|
|
230
743
|
parent = "collaborations-industry-collaborations"
|
|
231
744
|
|
|
232
|
-
[[
|
|
745
|
+
[[menu.astro]]
|
|
233
746
|
name = "Current Collaborations"
|
|
234
747
|
url = "https://www.eclipse.org/org/workinggroups/explore.php"
|
|
235
748
|
weight = 2
|
|
236
749
|
parent = "collaborations-industry-collaborations"
|
|
237
750
|
|
|
238
|
-
[[
|
|
751
|
+
[[menu.astro]]
|
|
239
752
|
name = "About Working Groups"
|
|
240
753
|
url = "https://www.eclipse.org/org/workinggroups/about.php"
|
|
241
754
|
weight = 3
|
|
242
755
|
parent = "collaborations-industry-collaborations"
|
|
243
756
|
|
|
244
|
-
[[
|
|
757
|
+
[[menu.astro]]
|
|
245
758
|
name = "About Interest Groups"
|
|
246
759
|
url = "https://www.eclipse.org/collaborations/interest-groups/"
|
|
247
760
|
weight = 4
|
|
248
761
|
parent = "collaborations-industry-collaborations"
|
|
249
762
|
|
|
250
|
-
[[
|
|
763
|
+
[[menu.astro]]
|
|
251
764
|
name = "Research Collaborations"
|
|
252
765
|
identifier = "collaborations-research-collaborations"
|
|
253
766
|
weight = 2
|
|
254
767
|
parent = "collaborations"
|
|
255
768
|
|
|
256
|
-
[[
|
|
769
|
+
[[menu.astro]]
|
|
257
770
|
name = "Research @ Eclipse"
|
|
258
771
|
url = "https://www.eclipse.org/research/"
|
|
259
772
|
weight = 1
|
|
260
773
|
parent="collaborations-research-collaborations"
|
|
261
774
|
|
|
262
|
-
[[
|
|
775
|
+
[[menu.astro]]
|
|
263
776
|
name = "Resources"
|
|
264
777
|
weight = 4
|
|
265
778
|
identifier = "resources"
|
|
266
|
-
[
|
|
779
|
+
[menu.astro.params]
|
|
267
780
|
description = """
|
|
268
781
|
The Eclipse community consists of individual developers and organisations
|
|
269
782
|
spanning many industries. Stay up to date on our open source community
|
|
270
783
|
and find resources to support your journey.
|
|
271
784
|
"""
|
|
272
785
|
|
|
273
|
-
[[
|
|
786
|
+
[[menu.astro]]
|
|
274
787
|
name = "Open Source for Business"
|
|
275
788
|
weight = 1
|
|
276
789
|
parent = "resources"
|
|
277
790
|
identifier = "resources-open-source"
|
|
278
791
|
|
|
279
|
-
[[
|
|
792
|
+
[[menu.astro]]
|
|
280
793
|
name = "Business Value of Open Source"
|
|
281
794
|
url = "https://www.eclipse.org/org/value/"
|
|
282
795
|
weight = 1
|
|
283
796
|
parent = "resources-open-source"
|
|
284
797
|
|
|
285
|
-
[[
|
|
798
|
+
[[menu.astro]]
|
|
286
799
|
name = "Professional Services"
|
|
287
800
|
url = "https://www.eclipse.org/os4biz/services/"
|
|
288
801
|
weight = 2
|
|
289
802
|
parent = "resources-open-source"
|
|
290
803
|
|
|
291
|
-
[[
|
|
804
|
+
[[menu.astro]]
|
|
292
805
|
name = "Open Source Program Offices"
|
|
293
806
|
url = "https://www.eclipse.org/os4biz/ospo/"
|
|
294
807
|
weight = 3
|
|
295
808
|
parent = "resources-open-source"
|
|
296
809
|
|
|
297
|
-
[[
|
|
810
|
+
[[menu.astro]]
|
|
298
811
|
name = "What's Happening"
|
|
299
812
|
weight = 2
|
|
300
813
|
parent = "resources"
|
|
301
814
|
identifier = "resources-happening"
|
|
302
815
|
|
|
303
|
-
[[
|
|
816
|
+
[[menu.astro]]
|
|
304
817
|
name = "News"
|
|
305
818
|
url = "https://newsroom.eclipse.org/"
|
|
306
819
|
weight = 1
|
|
307
820
|
parent = "resources-happening"
|
|
308
821
|
|
|
309
|
-
[[
|
|
822
|
+
[[menu.astro]]
|
|
310
823
|
name = "Events"
|
|
311
824
|
url = "https://events.eclipse.org/"
|
|
312
825
|
weight = 2
|
|
313
826
|
parent = "resources-happening"
|
|
314
827
|
|
|
315
|
-
[[
|
|
828
|
+
[[menu.astro]]
|
|
316
829
|
name = "Newsletter"
|
|
317
830
|
url = "https://www.eclipse.org/community/eclipse_newsletter/"
|
|
318
831
|
weight = 3
|
|
319
832
|
parent = "resources-happening"
|
|
320
833
|
|
|
321
|
-
[[
|
|
834
|
+
[[menu.astro]]
|
|
322
835
|
name = "Press Releases"
|
|
323
836
|
url = "https://newsroom.eclipse.org/news/press-releases"
|
|
324
837
|
weight = 4
|
|
325
838
|
parent = "resources-happening"
|
|
326
839
|
|
|
327
|
-
[[
|
|
840
|
+
[[menu.astro]]
|
|
328
841
|
name = "Awards & Recognition"
|
|
329
842
|
url = "https://www.eclipse.org/org/foundation/eclipseawards/"
|
|
330
843
|
weight = 5
|
|
331
844
|
parent = "resources-happening"
|
|
332
845
|
|
|
333
|
-
[[
|
|
846
|
+
[[menu.astro]]
|
|
334
847
|
name = "Developer Resources"
|
|
335
848
|
weight = 3
|
|
336
849
|
parent = "resources"
|
|
337
850
|
identifier = "resources-developer"
|
|
338
851
|
|
|
339
|
-
[[
|
|
852
|
+
[[menu.astro]]
|
|
340
853
|
name = "Forum"
|
|
341
854
|
url = "https://eclipse.org/forums/"
|
|
342
855
|
weight = 1
|
|
343
856
|
parent = "resources-developer"
|
|
344
857
|
|
|
345
|
-
[[
|
|
858
|
+
[[menu.astro]]
|
|
346
859
|
name = "Mailing Lists"
|
|
347
860
|
url = "https://accounts.eclipse.org/mailing-list"
|
|
348
861
|
weight = 2
|
|
349
862
|
parent = "resources-developer"
|
|
350
863
|
|
|
351
|
-
[[
|
|
864
|
+
[[menu.astro]]
|
|
352
865
|
name = "Blogs & Videos"
|
|
353
866
|
url = "https://www.eclipse.org/blogs-and-videos/"
|
|
354
867
|
weight = 3
|
|
355
868
|
parent = "resources-developer"
|
|
356
869
|
|
|
357
|
-
[[
|
|
870
|
+
[[menu.astro]]
|
|
358
871
|
name = "Marketplaces"
|
|
359
872
|
url = "https://www.eclipse.org/resources/marketplaces/"
|
|
360
873
|
weight = 4
|
|
361
874
|
parent = "resources-developer"
|
|
362
875
|
|
|
363
|
-
[[
|
|
876
|
+
[[menu.astro]]
|
|
364
877
|
name = "The Foundation"
|
|
365
878
|
weight = 5
|
|
366
879
|
identifier = "the-foundation"
|
|
367
|
-
[
|
|
880
|
+
[menu.astro.params]
|
|
368
881
|
description = """
|
|
369
882
|
The Eclipse Foundation provides our global community of individuals and
|
|
370
883
|
organisations with a mature, scalable, and vendor-neutral environment for
|
|
371
884
|
open source software collaboration and innovation.
|
|
372
885
|
"""
|
|
373
886
|
|
|
374
|
-
[[
|
|
887
|
+
[[menu.astro]]
|
|
375
888
|
name = "About"
|
|
376
889
|
weight = 1
|
|
377
890
|
identifier = "the-foundation-about"
|
|
378
891
|
parent = "the-foundation"
|
|
379
892
|
|
|
380
|
-
[[
|
|
893
|
+
[[menu.astro]]
|
|
381
894
|
name = "About the Eclipse Foundation"
|
|
382
895
|
url = "https://www.eclipse.org/org/"
|
|
383
896
|
weight = 1
|
|
384
897
|
parent="the-foundation-about"
|
|
385
898
|
|
|
386
|
-
[[
|
|
899
|
+
[[menu.astro]]
|
|
387
900
|
name = "Board & Governance"
|
|
388
901
|
url = "https://www.eclipse.org/org/governance/"
|
|
389
902
|
weight = 2
|
|
390
903
|
parent="the-foundation-about"
|
|
391
904
|
|
|
392
|
-
[[
|
|
905
|
+
[[menu.astro]]
|
|
393
906
|
name = "Staff"
|
|
394
907
|
url = "https://www.eclipse.org/org/foundation/staff.php"
|
|
395
908
|
weight = 3
|
|
396
909
|
parent="the-foundation-about"
|
|
397
910
|
|
|
398
|
-
[[
|
|
911
|
+
[[menu.astro]]
|
|
399
912
|
name = "Services"
|
|
400
913
|
url = "https://www.eclipse.org/org/services/"
|
|
401
914
|
weight = 4
|
|
402
915
|
parent="the-foundation-about"
|
|
403
916
|
|
|
404
|
-
[[
|
|
917
|
+
[[menu.astro]]
|
|
405
918
|
name = "Legal"
|
|
406
919
|
weight = 2
|
|
407
920
|
identifier = "the-foundation-legal"
|
|
408
921
|
parent = "the-foundation"
|
|
409
922
|
|
|
410
|
-
[[
|
|
923
|
+
[[menu.astro]]
|
|
411
924
|
name = "Legal Policies"
|
|
412
925
|
url = "https://www.eclipse.org/legal/"
|
|
413
926
|
weight = 1
|
|
414
927
|
parent="the-foundation-legal"
|
|
415
928
|
|
|
416
|
-
[[
|
|
929
|
+
[[menu.astro]]
|
|
417
930
|
name = "Privacy Policy"
|
|
418
931
|
url = "https://www.eclipse.org/legal/privacy/"
|
|
419
932
|
weight = 2
|
|
420
933
|
parent="the-foundation-legal"
|
|
421
934
|
|
|
422
|
-
[[
|
|
935
|
+
[[menu.astro]]
|
|
423
936
|
name = "Terms of Use"
|
|
424
937
|
url = "https://www.eclipse.org/legal/terms-of-use/"
|
|
425
938
|
weight = 3
|
|
426
939
|
parent="the-foundation-legal"
|
|
427
940
|
|
|
428
|
-
[[
|
|
941
|
+
[[menu.astro]]
|
|
429
942
|
name = "Compliance"
|
|
430
943
|
url = "https://www.eclipse.org/legal/compliance/"
|
|
431
944
|
weight = 4
|
|
432
945
|
parent="the-foundation-legal"
|
|
433
946
|
|
|
434
|
-
[[
|
|
947
|
+
[[menu.astro]]
|
|
435
948
|
name = "Eclipse Public License"
|
|
436
949
|
url = "https://www.eclipse.org/legal/epl-2.0/"
|
|
437
950
|
weight = 5
|
|
438
951
|
parent="the-foundation-legal"
|
|
439
952
|
|
|
440
|
-
[[
|
|
953
|
+
[[menu.astro]]
|
|
441
954
|
name = "More"
|
|
442
955
|
weight = 3
|
|
443
956
|
identifier = "the-foundation-more"
|
|
444
957
|
parent = "the-foundation"
|
|
445
958
|
|
|
446
|
-
[[
|
|
959
|
+
[[menu.astro]]
|
|
447
960
|
name = "Press Releases "
|
|
448
961
|
url = "https://newsroom.eclipse.org/news/press-releases"
|
|
449
962
|
weight = 1
|
|
450
963
|
parent="the-foundation-more"
|
|
451
964
|
|
|
452
|
-
[[
|
|
965
|
+
[[menu.astro]]
|
|
453
966
|
name = "Careers"
|
|
454
967
|
url = "https://www.eclipse.org/careers/"
|
|
455
968
|
weight = 2
|
|
456
969
|
parent="the-foundation-more"
|
|
457
970
|
|
|
458
|
-
[[
|
|
971
|
+
[[menu.astro]]
|
|
459
972
|
name = "Logos & Artwork"
|
|
460
973
|
url = "https://www.eclipse.org/org/artwork/"
|
|
461
974
|
weight = 3
|
|
462
975
|
parent="the-foundation-more"
|
|
463
976
|
|
|
464
|
-
[[
|
|
977
|
+
[[menu.astro]]
|
|
465
978
|
name = "Contact Us"
|
|
466
979
|
url = "https://www.eclipse.org/org/foundation/contact.php"
|
|
467
980
|
weight = 4
|
|
@@ -469,18 +982,126 @@
|
|
|
469
982
|
|
|
470
983
|
# Quicksilver Menu
|
|
471
984
|
|
|
472
|
-
[[
|
|
985
|
+
[[menu.quicksilver]]
|
|
473
986
|
name = "Projects"
|
|
474
987
|
url = "https://www.eclipse.org/projects/"
|
|
475
988
|
weight = 1
|
|
476
989
|
|
|
477
|
-
[[
|
|
990
|
+
[[menu.quicksilver]]
|
|
478
991
|
name = "Working Groups"
|
|
479
992
|
url = "https://www.eclipse.org/org/workinggroups/"
|
|
480
993
|
weight = 2
|
|
481
994
|
|
|
482
|
-
[[
|
|
995
|
+
[[menu.quicksilver]]
|
|
483
996
|
name = "Members"
|
|
484
997
|
url = "https://www.eclipse.org/membership/"
|
|
485
998
|
weight = 2
|
|
486
999
|
|
|
1000
|
+
# Neptune Footer
|
|
1001
|
+
|
|
1002
|
+
[[menu.footer]]
|
|
1003
|
+
name = "Eclipse Foundation"
|
|
1004
|
+
identifier = "eclipse-foundation"
|
|
1005
|
+
weight = 1
|
|
1006
|
+
|
|
1007
|
+
[[menu.footer]]
|
|
1008
|
+
name = "About"
|
|
1009
|
+
url = "https://www.eclipse.org/org/"
|
|
1010
|
+
parent = "eclipse-foundation"
|
|
1011
|
+
weight = 1
|
|
1012
|
+
|
|
1013
|
+
[[menu.footer]]
|
|
1014
|
+
name = "Projects"
|
|
1015
|
+
url = "https://projects.eclipse.org/"
|
|
1016
|
+
parent = "eclipse-foundation"
|
|
1017
|
+
weight = 2
|
|
1018
|
+
|
|
1019
|
+
[[menu.footer]]
|
|
1020
|
+
name = "Collaborations"
|
|
1021
|
+
url = "https://www.eclipse.org/collaborations/"
|
|
1022
|
+
parent = "eclipse-foundation"
|
|
1023
|
+
weight = 3
|
|
1024
|
+
|
|
1025
|
+
[[menu.footer]]
|
|
1026
|
+
name = "Membership"
|
|
1027
|
+
url = "https://www.eclipse.org/membership/"
|
|
1028
|
+
parent = "eclipse-foundation"
|
|
1029
|
+
weight = 4
|
|
1030
|
+
|
|
1031
|
+
[[menu.footer]]
|
|
1032
|
+
name = "Sponsor"
|
|
1033
|
+
url = "https://www.eclipse.org/sponsor/"
|
|
1034
|
+
parent = "eclipse-foundation"
|
|
1035
|
+
weight = 5
|
|
1036
|
+
|
|
1037
|
+
|
|
1038
|
+
[[menu.footer]]
|
|
1039
|
+
name = "Legal"
|
|
1040
|
+
identifier = "legal"
|
|
1041
|
+
weight = 2
|
|
1042
|
+
|
|
1043
|
+
[[menu.footer]]
|
|
1044
|
+
name = "Privacy Policy"
|
|
1045
|
+
url = "https://www.eclipse.org/legal/privacy/"
|
|
1046
|
+
parent = "legal"
|
|
1047
|
+
weight = 1
|
|
1048
|
+
|
|
1049
|
+
[[menu.footer]]
|
|
1050
|
+
name = "Terms of Use"
|
|
1051
|
+
url = "https://www.eclipse.org/legal/terms-of-use/"
|
|
1052
|
+
parent = "legal"
|
|
1053
|
+
weight = 2
|
|
1054
|
+
|
|
1055
|
+
[[menu.footer]]
|
|
1056
|
+
name = "Compliance"
|
|
1057
|
+
url = "https://www.eclipse.org/legal/compliance/"
|
|
1058
|
+
parent = "legal"
|
|
1059
|
+
weight = 3
|
|
1060
|
+
|
|
1061
|
+
[[menu.footer]]
|
|
1062
|
+
name = "Code of Conduct"
|
|
1063
|
+
url = "https://www.eclipse.org/org/documents/Community_Code_of_Conduct.php"
|
|
1064
|
+
parent = "legal"
|
|
1065
|
+
weight = 4
|
|
1066
|
+
|
|
1067
|
+
[[menu.footer]]
|
|
1068
|
+
name = "Legal Resources"
|
|
1069
|
+
url = "https://www.eclipse.org/legal/"
|
|
1070
|
+
parent = "legal"
|
|
1071
|
+
weight = 5
|
|
1072
|
+
|
|
1073
|
+
[[menu.footer]]
|
|
1074
|
+
name = "Manage Cookies"
|
|
1075
|
+
url = "#"
|
|
1076
|
+
parent = "legal"
|
|
1077
|
+
weight = 6
|
|
1078
|
+
|
|
1079
|
+
[[menu.footer]]
|
|
1080
|
+
name = "More"
|
|
1081
|
+
identifier = "more"
|
|
1082
|
+
weight = 3
|
|
1083
|
+
|
|
1084
|
+
[[menu.footer]]
|
|
1085
|
+
name = "Report a Vulnerability"
|
|
1086
|
+
url = "https://www.eclipse.org/security/"
|
|
1087
|
+
parent = "more"
|
|
1088
|
+
weight = 1
|
|
1089
|
+
|
|
1090
|
+
[[menu.footer]]
|
|
1091
|
+
name = "Service Status"
|
|
1092
|
+
url = "https://status.eclipse.org/"
|
|
1093
|
+
parent = "more"
|
|
1094
|
+
weight = 2
|
|
1095
|
+
|
|
1096
|
+
[[menu.footer]]
|
|
1097
|
+
name = "Contact Us"
|
|
1098
|
+
url = "https://www.eclipse.org/org/foundation/contact.php"
|
|
1099
|
+
parent = "more"
|
|
1100
|
+
weight = 3
|
|
1101
|
+
|
|
1102
|
+
[[menu.footer]]
|
|
1103
|
+
name = "Support"
|
|
1104
|
+
url = "https://www.eclipse.org/projects/support/"
|
|
1105
|
+
parent = "more"
|
|
1106
|
+
weight = 4
|
|
1107
|
+
|