eclipsefdn-hugo-solstice-theme 0.0.216 → 0.0.218

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.
Files changed (32) hide show
  1. package/config.toml +2 -2
  2. package/exampleSite/config/_default/config.toml +1 -0
  3. package/exampleSite/config/_default/menus.en.toml +63 -271
  4. package/exampleSite/config/_default/menus.es.toml +49 -1
  5. package/exampleSite/config/_default/menus.fr.toml +49 -1
  6. package/exampleSite/config/_default/menus.jp.toml +49 -1
  7. package/exampleSite/config/_default/menus.pt.toml +49 -1
  8. package/exampleSite/config/_default/menus.ru.toml +49 -1
  9. package/exampleSite/config/_default/menus.zh.toml +49 -1
  10. package/exampleSite/content/components/newsroom/resources.md +24 -0
  11. package/exampleSite/content/components/sidebar.md +130 -0
  12. package/exampleSite/data/doc_params.yml +6 -0
  13. package/i18n/de.toml +1 -1
  14. package/i18n/en.toml +1 -1
  15. package/i18n/ru.toml +1 -1
  16. package/i18n/tr.toml +1 -1
  17. package/i18n/zh.toml +1 -1
  18. package/layouts/partials/astro/footer.html +10 -4
  19. package/layouts/partials/astro/main_prefix.html +2 -1
  20. package/layouts/partials/astro/mobile_menu.html +83 -36
  21. package/layouts/partials/astro/nav.html +40 -8
  22. package/layouts/partials/astro/sidebar.html +62 -58
  23. package/layouts/partials/astro/socials.html +1 -1
  24. package/layouts/partials/footer.html +5 -1
  25. package/layouts/partials/footer_links/footer-eclipse-foundation.html +1 -1
  26. package/layouts/partials/footer_links/footer-legal.html +5 -5
  27. package/layouts/partials/footer_links/footer-other.html +1 -1
  28. package/layouts/partials/footer_links/suffix.html +17 -16
  29. package/layouts/partials/footer_prefix.html +14 -0
  30. package/layouts/partials/working_group_footer.html +55 -0
  31. package/layouts/shortcodes/newsroom/resources.html +4 -1
  32. package/package.json +3 -3
package/config.toml CHANGED
@@ -366,13 +366,13 @@
366
366
 
367
367
  [[menus.astro]]
368
368
  name = "Privacy Policy"
369
- url = "https://www.eclipse.org/legal/privacy.php"
369
+ url = "https://www.eclipse.org/legal/privacy/"
370
370
  weight = 2
371
371
  parent="the-foundation-legal"
372
372
 
373
373
  [[menus.astro]]
374
374
  name = "Terms of Use"
375
- url = "https://www.eclipse.org/legal/termsofuse.php"
375
+ url = "https://www.eclipse.org/legal/terms-of-use/"
376
376
  weight = 3
377
377
  parent="the-foundation-legal"
378
378
 
@@ -27,6 +27,7 @@ baseURL = "https://webdev.eclipse.org/docs/hugo"
27
27
  show_events = true
28
28
  table_classes = "table table-bordered"
29
29
  hide_cfa_same_page = true
30
+ hide_footer_newsletter = true
30
31
  show_collapsible_menu = true
31
32
  sidebar_layout = "default"
32
33
  hide_deprecation_warnings = true
@@ -1,284 +1,34 @@
1
-
2
- [[main]]
3
- name = "Examples"
4
- url = "#"
5
- weight = 2
6
- identifier = "examples"
7
-
8
- [main.params]
9
- description = """
10
- Examples of the different layouts and features offered by Hugo Solstice Theme.
11
- """
12
-
13
- [[main]]
14
- name = "Layouts"
15
- url = "#"
16
- weight = 1
17
- parent = "examples"
18
- identifier = "layouts"
19
-
20
- [[main]]
21
- name = "Features"
22
- url = "#"
23
- weight = 2
24
- parent = "examples"
25
- identifier = "features"
26
-
27
- [[main]]
28
- name = "Single Page"
29
- url = "/single_page/"
30
- weight = 1
31
- parent = "layouts"
32
-
33
- [[main]]
34
- name = "News sample"
35
- url = "/news/"
36
- weight = 2
37
- parent = "layouts"
38
-
39
- [[main]]
40
- name = "Membership sample"
41
- url = "/membership/"
42
- weight = 3
43
- parent = "features"
44
-
45
- [[main]]
46
- name = "Events sample"
47
- url = "/events/"
48
- weight = 3
49
- parent = "features"
50
-
51
- [[main]]
52
- name = "FAQ sample"
53
- url = "/faq/"
54
- weight = 4
55
- parent = "features"
56
-
57
- [[main]]
58
- name = "Hide Call For Action"
59
- url = "/hide_call_for_action/"
60
- weight = 5
61
- parent = "features"
62
-
63
- [[main]]
64
- name = "Without Breadcrumb"
65
- url = "/without_breadcrumb/"
66
- weight = 6
67
- parent = "features"
68
-
69
- [[main]]
70
- name = "multi-children mobile sidebar sample"
71
- url = "/third-parent/"
72
- weight = 7
73
- parent = "layouts"
74
-
75
- [[main]]
76
- name = "Subsite Custom Logo"
77
- url = "/subsite-1/"
78
- weight = 8
79
- parent = "layouts"
80
-
81
- [[main]]
82
- name = "Custom Jumbotron"
83
- url = "/custom-jumbotron/"
84
- weight = 9
85
- parent = "layouts"
86
-
87
1
  [[main]]
88
- name = "Coming Soon"
89
- url = "/coming-soon/"
90
- weight = 10
91
- parent = "layouts"
92
-
93
- [[main]]
94
- name = "Components"
95
- url = "/components/"
96
- weight = 3
97
- identifier = "components"
2
+ name = "About"
3
+ url = "/about/"
4
+ weight = 1
5
+ identifier = "about"
98
6
 
99
7
  [[main]]
100
- name = "Solstice Additions"
101
- url = "/components/#solstice"
102
- weight = 1
103
- parent = "components"
104
- identifier = "solstice"
8
+ name = "Membership"
9
+ url = "/membership/"
10
+ weight = 2
11
+ identifier = "membership"
105
12
 
106
13
  [[main]]
107
- name = "Events Framework"
108
- url = "/components/#events-framework"
109
- weight = 2
110
- parent = "components"
111
- identifier = "events"
14
+ name = "Participate"
15
+ url = "/participate/"
16
+ weight = 3
17
+ identifier = "participate"
112
18
 
113
19
  [[main]]
114
- name = "Dynamic Content"
115
- url = "/components/#dynamic"
116
- weight = 3
117
- parent = "components"
118
- identifier = "dynamic"
20
+ name = "Participation and Membership FAQ"
21
+ url = "/about/participation-and-membership-faq/"
22
+ weight = 3
23
+ identifier = "participation-and-membership-faq"
119
24
 
120
25
  [[main]]
121
- name = "Deprecated"
122
- url = "/components/#deprecated"
123
- weight = 4
124
- parent = "components"
125
- identifier = "deprecated"
26
+ name = "Testing Submenu"
27
+ url = "/test/"
28
+ weight = 1
29
+ identifier = "testing-submenu"
30
+ parent = "about"
126
31
 
127
- [[main]]
128
- name = "Meeting Minutes"
129
- url = "/components/meeting_minutes/"
130
- weight = 3
131
- parent = "deprecated"
132
-
133
- [[main]]
134
- name = "Membership"
135
- url = "/components/members/"
136
- weight = 3
137
- parent = "solstice"
138
-
139
- [[main]]
140
- name = "Taxonomy list"
141
- url = "/components/taxonomy_list/"
142
- weight = 3
143
- parent = "solstice"
144
-
145
- [[main]]
146
- name = "Testimonials"
147
- url = "/components/testimonials/"
148
- weight = 3
149
- parent = "solstice"
150
-
151
- [[main]]
152
- name = "YouTube videos"
153
- url = "/components/youtube/"
154
- weight = 3
155
- parent = "solstice"
156
-
157
- [[main]]
158
- name = "FAQ"
159
- url = "/components/faq/"
160
- weight = 4
161
- parent = "solstice"
162
-
163
- [[main]]
164
- name = "Hubspot Contact Form"
165
- url = "/components/hubspot/"
166
- weight = 5
167
- parent = "solstice"
168
-
169
- [[main]]
170
- name = "Featured Footer"
171
- url = "/components/featured_footer/"
172
- weight = 3
173
- parent = "solstice"
174
-
175
- [[main]]
176
- name = "Featured Story"
177
- url = "/components/featured_story/"
178
- weight = 3
179
- parent = "solstice"
180
-
181
- [[main]]
182
- name = "EclipseFdn Projects page"
183
- url = "/components/eclipsefdn_projects_page/"
184
- weight = 3
185
- parent = "solstice"
186
-
187
- [[main]]
188
- name = "EclipseFdn Members List"
189
- url = "/components/eclipsefdn_members_list/"
190
- weight = 4
191
- parent = "solstice"
192
-
193
- [[main]]
194
- name = "HTML Tables"
195
- url = "/components/tables/"
196
- weight = 3
197
- parent = "solstice"
198
-
199
- [[main]]
200
- name = "Text Target"
201
- url = "/components/text_target/"
202
- weight = 3
203
- parent = "solstice"
204
-
205
- [[main]]
206
- name = "Twitter Timeline"
207
- url = "/components/twitter_timeline/"
208
- weight = 3
209
- parent = "solstice"
210
-
211
- [[main]]
212
- name = "Twitter Buttons"
213
- url = "/components/twitter_button/"
214
- weight = 3
215
- parent = "solstice"
216
-
217
- [[main]]
218
- name = "RSS Feed"
219
- url = "/components/rss/"
220
- weight = 3
221
- parent = "dynamic"
222
-
223
- [[main]]
224
- name = "Video List"
225
- url = "/components/video_list"
226
- weight = 3
227
- parent = "solstice"
228
-
229
- [[main]]
230
- name = "Adopters"
231
- url = "/components/adopters"
232
- weight = 3
233
- parent = "solstice"
234
-
235
- [[main]]
236
- name = "Users Display"
237
- url = "/components/user_display/"
238
- weight = 3
239
- parent = "events"
240
-
241
- [[main]]
242
- name = "User Bios"
243
- url = "/components/user_bios/"
244
- weight = 3
245
- parent = "events"
246
-
247
- [[main]]
248
- name = "Registration"
249
- url = "/components/registration/"
250
- weight = 3
251
- parent = "events"
252
-
253
- [[main]]
254
- name = "Agenda"
255
- url = "/components/agenda/"
256
- weight = 3
257
- parent = "events"
258
-
259
- [[main]]
260
- name = "Newsroom News"
261
- url = "/components/newsroom/news/"
262
- weight = 3
263
- parent = "dynamic"
264
-
265
- [[main]]
266
- name = "Newsroom Events"
267
- url = "/components/newsroom/events/"
268
- weight = 3
269
- parent = "dynamic"
270
-
271
- [[main]]
272
- name = "News"
273
- url = "/components/news/"
274
- weight = 2
275
- parent = "deprecated"
276
-
277
- [[main]]
278
- name = "Events"
279
- url = "/components/events/"
280
- weight = 3
281
- parent = "deprecated"
282
32
 
283
33
  [[sidebar]]
284
34
  name = "Hugo Solstice Theme"
@@ -378,3 +128,45 @@
378
128
  name = "Go Home"
379
129
  url = "/"
380
130
  weight = 1
131
+
132
+ # Custom sidebar
133
+ [[sidebar]]
134
+ identifier = "sidebar-custom"
135
+ name = "Eclipse Working Groups"
136
+ url = "https://www.eclipse.org/collaborations/"
137
+ weight = 1
138
+
139
+ [[sidebar]]
140
+ parent = "sidebar-custom"
141
+ name = "Explore Working Groups"
142
+ weight = 1
143
+ url = "https://www.eclipse.org/org/working-groups/explore/"
144
+
145
+ [[sidebar]]
146
+ parent = "sidebar-custom"
147
+ name = "About Working Groups"
148
+ weight = 2
149
+ url = "https://www.eclipse.org/org/working-groups/about/"
150
+
151
+ [[sidebar]]
152
+ identifier = "sidebar-additional"
153
+ name = "Related Links"
154
+ weight = 2
155
+
156
+ [[sidebar]]
157
+ parent = "sidebar-additional"
158
+ name = "Working Group Process"
159
+ weight = 1
160
+ url = "https://www.eclipse.org/org/working-groups/process/"
161
+
162
+ [[sidebar]]
163
+ parent = "sidebar-additional"
164
+ name = "Working Group Operations"
165
+ weight = 2
166
+ url = "https://www.eclipse.org/org/working-groups/operations/"
167
+
168
+ [[sidebar]]
169
+ parent = "sidebar-additional"
170
+ name = "Working Group Development Effort Guidelines"
171
+ weight = 3
172
+ url = "https://www.eclipse.org/org/working-groups/wgfi-program/"
@@ -231,6 +231,12 @@
231
231
  weight = 3
232
232
  parent = "dynamic"
233
233
 
234
+ [[main]]
235
+ name = "Newsroom Resources"
236
+ url = "/components/newsroom/resources/"
237
+ weight = 3
238
+ parent = "dynamic"
239
+
234
240
  [[main]]
235
241
  name = "News"
236
242
  url = "/components/news/"
@@ -340,4 +346,46 @@
340
346
  parent = "custom-menu"
341
347
  name = "Go Home"
342
348
  url = "/"
343
- weight = 1
349
+ weight = 1
350
+
351
+ # Custom sidebar
352
+ [[sidebar]]
353
+ identifier = "sidebar-custom"
354
+ name = "Eclipse Working Groups"
355
+ url = "https://www.eclipse.org/collaborations/"
356
+ weight = 1
357
+
358
+ [[sidebar]]
359
+ parent = "sidebar-custom"
360
+ name = "Explore Working Groups"
361
+ weight = 1
362
+ url = "https://www.eclipse.org/org/working-groups/explore/"
363
+
364
+ [[sidebar]]
365
+ parent = "sidebar-custom"
366
+ name = "About Working Groups"
367
+ weight = 2
368
+ url = "https://www.eclipse.org/org/working-groups/about/"
369
+
370
+ [[sidebar]]
371
+ identifier = "sidebar-additional"
372
+ name = "Related Links"
373
+ weight = 2
374
+
375
+ [[sidebar]]
376
+ parent = "sidebar-additional"
377
+ name = "Working Group Process"
378
+ weight = 1
379
+ url = "https://www.eclipse.org/org/working-groups/process/"
380
+
381
+ [[sidebar]]
382
+ parent = "sidebar-additional"
383
+ name = "Working Group Operations"
384
+ weight = 2
385
+ url = "https://www.eclipse.org/org/working-groups/operations/"
386
+
387
+ [[sidebar]]
388
+ parent = "sidebar-additional"
389
+ name = "Working Group Development Effort Guidelines"
390
+ weight = 3
391
+ url = "https://www.eclipse.org/org/working-groups/wgfi-program/"
@@ -231,6 +231,12 @@
231
231
  weight = 3
232
232
  parent = "dynamic"
233
233
 
234
+ [[main]]
235
+ name = "Newsroom Resources"
236
+ url = "/components/newsroom/resources/"
237
+ weight = 3
238
+ parent = "dynamic"
239
+
234
240
  [[main]]
235
241
  name = "Nouvelles"
236
242
  url = "/components/news/"
@@ -342,4 +348,46 @@
342
348
  parent = "custom-menu"
343
349
  name = "Go Home"
344
350
  url = "/"
345
- weight = 1
351
+ weight = 1
352
+
353
+ # Custom sidebar
354
+ [[sidebar]]
355
+ identifier = "sidebar-custom"
356
+ name = "Eclipse Working Groups"
357
+ url = "https://www.eclipse.org/collaborations/"
358
+ weight = 1
359
+
360
+ [[sidebar]]
361
+ parent = "sidebar-custom"
362
+ name = "Explore Working Groups"
363
+ weight = 1
364
+ url = "https://www.eclipse.org/org/working-groups/explore/"
365
+
366
+ [[sidebar]]
367
+ parent = "sidebar-custom"
368
+ name = "About Working Groups"
369
+ weight = 2
370
+ url = "https://www.eclipse.org/org/working-groups/about/"
371
+
372
+ [[sidebar]]
373
+ identifier = "sidebar-additional"
374
+ name = "Related Links"
375
+ weight = 2
376
+
377
+ [[sidebar]]
378
+ parent = "sidebar-additional"
379
+ name = "Working Group Process"
380
+ weight = 1
381
+ url = "https://www.eclipse.org/org/working-groups/process/"
382
+
383
+ [[sidebar]]
384
+ parent = "sidebar-additional"
385
+ name = "Working Group Operations"
386
+ weight = 2
387
+ url = "https://www.eclipse.org/org/working-groups/operations/"
388
+
389
+ [[sidebar]]
390
+ parent = "sidebar-additional"
391
+ name = "Working Group Development Effort Guidelines"
392
+ weight = 3
393
+ url = "https://www.eclipse.org/org/working-groups/wgfi-program/"
@@ -231,6 +231,12 @@
231
231
  weight = 3
232
232
  parent = "dynamic"
233
233
 
234
+ [[main]]
235
+ name = "Newsroom Resources"
236
+ url = "/components/newsroom/resources/"
237
+ weight = 3
238
+ parent = "dynamic"
239
+
234
240
  [[main]]
235
241
  name = "News"
236
242
  url = "/components/news/"
@@ -340,4 +346,46 @@
340
346
  parent = "custom-menu"
341
347
  name = "Go Home"
342
348
  url = "/"
343
- weight = 1
349
+ weight = 1
350
+
351
+ # Custom sidebar
352
+ [[sidebar]]
353
+ identifier = "sidebar-custom"
354
+ name = "Eclipse Working Groups"
355
+ url = "https://www.eclipse.org/collaborations/"
356
+ weight = 1
357
+
358
+ [[sidebar]]
359
+ parent = "sidebar-custom"
360
+ name = "Explore Working Groups"
361
+ weight = 1
362
+ url = "https://www.eclipse.org/org/working-groups/explore/"
363
+
364
+ [[sidebar]]
365
+ parent = "sidebar-custom"
366
+ name = "About Working Groups"
367
+ weight = 2
368
+ url = "https://www.eclipse.org/org/working-groups/about/"
369
+
370
+ [[sidebar]]
371
+ identifier = "sidebar-additional"
372
+ name = "Related Links"
373
+ weight = 2
374
+
375
+ [[sidebar]]
376
+ parent = "sidebar-additional"
377
+ name = "Working Group Process"
378
+ weight = 1
379
+ url = "https://www.eclipse.org/org/working-groups/process/"
380
+
381
+ [[sidebar]]
382
+ parent = "sidebar-additional"
383
+ name = "Working Group Operations"
384
+ weight = 2
385
+ url = "https://www.eclipse.org/org/working-groups/operations/"
386
+
387
+ [[sidebar]]
388
+ parent = "sidebar-additional"
389
+ name = "Working Group Development Effort Guidelines"
390
+ weight = 3
391
+ url = "https://www.eclipse.org/org/working-groups/wgfi-program/"
@@ -231,6 +231,12 @@
231
231
  weight = 3
232
232
  parent = "dynamic"
233
233
 
234
+ [[main]]
235
+ name = "Newsroom Resources"
236
+ url = "/components/newsroom/resources/"
237
+ weight = 3
238
+ parent = "dynamic"
239
+
234
240
  [[main]]
235
241
  name = "News"
236
242
  url = "/components/news/"
@@ -340,4 +346,46 @@
340
346
  parent = "custom-menu"
341
347
  name = "Go Home"
342
348
  url = "/"
343
- weight = 1
349
+ weight = 1
350
+
351
+ # Custom sidebar
352
+ [[sidebar]]
353
+ identifier = "sidebar-custom"
354
+ name = "Eclipse Working Groups"
355
+ url = "https://www.eclipse.org/collaborations/"
356
+ weight = 1
357
+
358
+ [[sidebar]]
359
+ parent = "sidebar-custom"
360
+ name = "Explore Working Groups"
361
+ weight = 1
362
+ url = "https://www.eclipse.org/org/working-groups/explore/"
363
+
364
+ [[sidebar]]
365
+ parent = "sidebar-custom"
366
+ name = "About Working Groups"
367
+ weight = 2
368
+ url = "https://www.eclipse.org/org/working-groups/about/"
369
+
370
+ [[sidebar]]
371
+ identifier = "sidebar-additional"
372
+ name = "Related Links"
373
+ weight = 2
374
+
375
+ [[sidebar]]
376
+ parent = "sidebar-additional"
377
+ name = "Working Group Process"
378
+ weight = 1
379
+ url = "https://www.eclipse.org/org/working-groups/process/"
380
+
381
+ [[sidebar]]
382
+ parent = "sidebar-additional"
383
+ name = "Working Group Operations"
384
+ weight = 2
385
+ url = "https://www.eclipse.org/org/working-groups/operations/"
386
+
387
+ [[sidebar]]
388
+ parent = "sidebar-additional"
389
+ name = "Working Group Development Effort Guidelines"
390
+ weight = 3
391
+ url = "https://www.eclipse.org/org/working-groups/wgfi-program/"
@@ -231,6 +231,12 @@
231
231
  weight = 3
232
232
  parent = "dynamic"
233
233
 
234
+ [[main]]
235
+ name = "Newsroom Resources"
236
+ url = "/components/newsroom/resources/"
237
+ weight = 3
238
+ parent = "dynamic"
239
+
234
240
  [[main]]
235
241
  name = "News"
236
242
  url = "/components/news/"
@@ -340,4 +346,46 @@
340
346
  parent = "custom-menu"
341
347
  name = "Go Home"
342
348
  url = "/"
343
- weight = 1
349
+ weight = 1
350
+
351
+ # Custom sidebar
352
+ [[sidebar]]
353
+ identifier = "sidebar-custom"
354
+ name = "Eclipse Working Groups"
355
+ url = "https://www.eclipse.org/collaborations/"
356
+ weight = 1
357
+
358
+ [[sidebar]]
359
+ parent = "sidebar-custom"
360
+ name = "Explore Working Groups"
361
+ weight = 1
362
+ url = "https://www.eclipse.org/org/working-groups/explore/"
363
+
364
+ [[sidebar]]
365
+ parent = "sidebar-custom"
366
+ name = "About Working Groups"
367
+ weight = 2
368
+ url = "https://www.eclipse.org/org/working-groups/about/"
369
+
370
+ [[sidebar]]
371
+ identifier = "sidebar-additional"
372
+ name = "Related Links"
373
+ weight = 2
374
+
375
+ [[sidebar]]
376
+ parent = "sidebar-additional"
377
+ name = "Working Group Process"
378
+ weight = 1
379
+ url = "https://www.eclipse.org/org/working-groups/process/"
380
+
381
+ [[sidebar]]
382
+ parent = "sidebar-additional"
383
+ name = "Working Group Operations"
384
+ weight = 2
385
+ url = "https://www.eclipse.org/org/working-groups/operations/"
386
+
387
+ [[sidebar]]
388
+ parent = "sidebar-additional"
389
+ name = "Working Group Development Effort Guidelines"
390
+ weight = 3
391
+ url = "https://www.eclipse.org/org/working-groups/wgfi-program/"