eclipsefdn-hugo-solstice-theme 0.0.216 → 0.0.217
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 +2 -2
- package/exampleSite/config/_default/config.toml +1 -0
- package/exampleSite/config/_default/menus.en.toml +6 -0
- package/exampleSite/config/_default/menus.es.toml +7 -1
- package/exampleSite/config/_default/menus.fr.toml +7 -1
- package/exampleSite/config/_default/menus.jp.toml +7 -1
- package/exampleSite/config/_default/menus.pt.toml +7 -1
- package/exampleSite/config/_default/menus.ru.toml +7 -1
- package/exampleSite/config/_default/menus.zh.toml +7 -1
- package/exampleSite/content/components/newsroom/resources.md +24 -0
- package/i18n/de.toml +1 -1
- package/i18n/en.toml +1 -1
- package/i18n/ru.toml +1 -1
- package/i18n/tr.toml +1 -1
- package/i18n/zh.toml +1 -1
- package/layouts/partials/astro/footer.html +10 -4
- package/layouts/partials/astro/main_prefix.html +2 -1
- package/layouts/partials/astro/nav.html +40 -8
- package/layouts/partials/astro/socials.html +1 -1
- package/layouts/partials/footer.html +5 -1
- package/layouts/partials/footer_links/footer-eclipse-foundation.html +1 -1
- package/layouts/partials/footer_links/footer-legal.html +5 -5
- package/layouts/partials/footer_links/footer-other.html +1 -1
- package/layouts/partials/footer_links/suffix.html +17 -16
- package/layouts/partials/footer_prefix.html +14 -0
- package/layouts/partials/working_group_footer.html +55 -0
- package/layouts/shortcodes/newsroom/resources.html +4 -1
- package/package.json +2 -2
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
|
|
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/
|
|
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
|
|
@@ -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,4 @@
|
|
|
340
346
|
parent = "custom-menu"
|
|
341
347
|
name = "Go Home"
|
|
342
348
|
url = "/"
|
|
343
|
-
weight = 1
|
|
349
|
+
weight = 1
|
|
@@ -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,4 @@
|
|
|
342
348
|
parent = "custom-menu"
|
|
343
349
|
name = "Go Home"
|
|
344
350
|
url = "/"
|
|
345
|
-
weight = 1
|
|
351
|
+
weight = 1
|
|
@@ -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,4 @@
|
|
|
340
346
|
parent = "custom-menu"
|
|
341
347
|
name = "Go Home"
|
|
342
348
|
url = "/"
|
|
343
|
-
weight = 1
|
|
349
|
+
weight = 1
|
|
@@ -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,4 @@
|
|
|
340
346
|
parent = "custom-menu"
|
|
341
347
|
name = "Go Home"
|
|
342
348
|
url = "/"
|
|
343
|
-
weight = 1
|
|
349
|
+
weight = 1
|
|
@@ -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,4 @@
|
|
|
340
346
|
parent = "custom-menu"
|
|
341
347
|
name = "Go Home"
|
|
342
348
|
url = "/"
|
|
343
|
-
weight = 1
|
|
349
|
+
weight = 1
|
|
@@ -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,4 @@
|
|
|
340
346
|
parent = "custom-menu"
|
|
341
347
|
name = "Go Home"
|
|
342
348
|
url = "/"
|
|
343
|
-
weight = 1
|
|
349
|
+
weight = 1
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: "Newsroom Resources"
|
|
3
|
+
hide_sidebar: true
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
You can display resources from the [Eclipse Newsroom](https://newsroom.eclipse.org/)
|
|
7
|
+
using the `newsroom/resources` shortcode.
|
|
8
|
+
|
|
9
|
+
{{< newsroom/resources wg="ecd_tools" title="White Papers" type="white_paper" >}}
|
|
10
|
+
{{< newsroom/resources wg="ecd_tools" title="Case Studies" type="case_study" >}}
|
|
11
|
+
{{< newsroom/resources wg="ecd_tools" title="Survey Reports" type="survey_report" >}}
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
## Usage
|
|
16
|
+
|
|
17
|
+
Code used on this page:
|
|
18
|
+
|
|
19
|
+
```
|
|
20
|
+
{{</* newsroom/resources wg="ecd_tools" title="White Papers" type="white_paper" */>}}
|
|
21
|
+
{{</* newsroom/resources wg="ecd_tools" title="Case Studies" type="case_study" */>}}
|
|
22
|
+
{{</* newsroom/resources wg="ecd_tools" title="Survey Reports" type="survey_report" */>}}
|
|
23
|
+
```
|
|
24
|
+
|
package/i18n/de.toml
CHANGED
|
@@ -242,7 +242,7 @@ other = "Eclipse Home"
|
|
|
242
242
|
other = "<a href='//eclipse.org/projects/searchpage.php'>Website durchsuchen</a>"
|
|
243
243
|
|
|
244
244
|
[not-found-template-privacy-terms-of-use]
|
|
245
|
-
other = "Website <a href='//eclipse.org/legal/privacy
|
|
245
|
+
other = "Website <a href='//eclipse.org/legal/privacy/'>Datenschutzhinweise</a> und <a href='//eclipse.org/legal/terms-of-use/'>Nutzungsbedingungen</a>"
|
|
246
246
|
|
|
247
247
|
[not-found-template-legal-documents]
|
|
248
248
|
other = "Juristische Dokumente"
|
package/i18n/en.toml
CHANGED
|
@@ -257,7 +257,7 @@
|
|
|
257
257
|
other = "<a href='//eclipse.org/projects/searchpage.php'>Search</a> our site"
|
|
258
258
|
|
|
259
259
|
[not-found-template-privacy-terms-of-use]
|
|
260
|
-
other = "Website <a href='//eclipse.org/legal/privacy
|
|
260
|
+
other = "Website <a href='//eclipse.org/legal/privacy/'>privacy policy</a> and <a href='//eclipse.org/legal/terms-of-use/'>terms of use</a>"
|
|
261
261
|
|
|
262
262
|
[not-found-template-legal-documents]
|
|
263
263
|
other = "Legal documents"
|
package/i18n/ru.toml
CHANGED
|
@@ -242,7 +242,7 @@
|
|
|
242
242
|
other = "<a href='//eclipse.org/projects/searchpage.php'>Поиск</a> на ашем сайте"
|
|
243
243
|
|
|
244
244
|
[not-found-template-privacy-terms-of-use]
|
|
245
|
-
other = "Вебсайт <a href='//eclipse.org/legal/privacy
|
|
245
|
+
other = "Вебсайт <a href='//eclipse.org/legal/privacy/'>privacy policy</a> и <a href='//eclipse.org/legal/terms-of-use/'> и условия использования</a>"
|
|
246
246
|
|
|
247
247
|
[not-found-template-legal-documents]
|
|
248
248
|
other = "Правовые документы"
|
package/i18n/tr.toml
CHANGED
|
@@ -242,7 +242,7 @@ other = "Eclipse Anasayfa"
|
|
|
242
242
|
other = "Sitemizde <a href='//eclipse.org/projects/searchpage.php'>Ara</a>"
|
|
243
243
|
|
|
244
244
|
[not-found-template-privacy-terms-of-use]
|
|
245
|
-
other = "Web sitesi <a href='//eclipse.org/legal/privacy
|
|
245
|
+
other = "Web sitesi <a href='//eclipse.org/legal/privacy/'>gizlilik politikası</a> ve <a href='//eclipse.org/legal/terms-of-use/'>kullanım koşulları</a>"
|
|
246
246
|
|
|
247
247
|
[not-found-template-legal-documents]
|
|
248
248
|
other = "Yasal Belgeler"
|
package/i18n/zh.toml
CHANGED
|
@@ -281,7 +281,7 @@
|
|
|
281
281
|
other = "<a href='//eclipse.org/projects/searchpage.php'>站内搜索</a>"
|
|
282
282
|
|
|
283
283
|
[not-found-template-privacy-terms-of-use]
|
|
284
|
-
other = "网站 <a href='//eclipse.org/legal/privacy
|
|
284
|
+
other = "网站 <a href='//eclipse.org/legal/privacy/'>隐私政策</a> and <a href='//eclipse.org/legal/terms-of-use/'>服务条款</a>"
|
|
285
285
|
|
|
286
286
|
[not-found-template-legal-documents]
|
|
287
287
|
other = "法律文档"
|
|
@@ -13,14 +13,20 @@
|
|
|
13
13
|
<p id="back-to-top">
|
|
14
14
|
<a class="visible-xs" href="#">{{ i18n "navigation-back-to-top" }}</a>
|
|
15
15
|
</p>
|
|
16
|
-
<footer id="footer">
|
|
16
|
+
<footer class="footer" id="footer">
|
|
17
17
|
<div class="container">
|
|
18
|
+
{{ partial "footer_prefix.html" . }}
|
|
18
19
|
<div class="footer-sections row equal-height-md font-bold">
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
20
|
+
{{ partial "footer_links/prefix.html" . }}
|
|
21
|
+
<div class="col-md-15">
|
|
22
|
+
<div class="row">
|
|
23
|
+
{{ partial "footer_links/links.html" . }}
|
|
24
|
+
</div>
|
|
25
|
+
</div>
|
|
26
|
+
{{ partial "footer_links/suffix.html" . }}
|
|
22
27
|
</div>
|
|
23
28
|
{{ partial "footer_links/footer-copyright.html" . }}
|
|
24
29
|
<a href="#" class="scrollup">{{ i18n "navigation-back-to-top" }}</a>
|
|
25
30
|
</div>
|
|
26
31
|
</footer>
|
|
32
|
+
|
|
@@ -22,8 +22,9 @@
|
|
|
22
22
|
{{ partial "breadcrumbs.html" . }}
|
|
23
23
|
{{ end }}
|
|
24
24
|
{{ if eq .Page.Params.is_deprecated true }}
|
|
25
|
+
{{ $msg := .Page.Params.deprecation_msg | default "This page is deprecated and may contain some information that is no longer relevant or accurate." }}
|
|
25
26
|
<div class="alert alert-danger margin-top-20" role="alert">
|
|
26
|
-
|
|
27
|
+
{{ $msg }}
|
|
27
28
|
</div>
|
|
28
29
|
{{ end }}
|
|
29
30
|
|
|
@@ -20,19 +20,51 @@
|
|
|
20
20
|
{{ $menu_id := .Identifier | default (lower .Name) }}
|
|
21
21
|
{{ $target_menu := printf "%s-menu" $menu_id }}
|
|
22
22
|
{{ $active_class := "" }}
|
|
23
|
+
{{ $menu_type := "link" }}
|
|
24
|
+
|
|
23
25
|
{{ if $current_page.IsMenuCurrent $main_menu . }}
|
|
24
26
|
{{ $active_class = "active" }}
|
|
25
27
|
{{ end }}
|
|
28
|
+
|
|
29
|
+
{{/* If the menu has children, we will show a dropdown */}}
|
|
30
|
+
{{ if .HasChildren }}
|
|
31
|
+
{{ $menu_type = "dropdown" }}
|
|
32
|
+
{{ end }}
|
|
33
|
+
|
|
34
|
+
{{/* Unless if any of the menus are 3-levels deep then we will show a mega menu. */}}
|
|
35
|
+
{{ range .Children }}
|
|
36
|
+
{{ if .HasChildren }}
|
|
37
|
+
{{ $menu_type = "mega" }}
|
|
38
|
+
{{ end }}
|
|
39
|
+
{{ end }}
|
|
26
40
|
|
|
27
41
|
<li class="navbar-nav-links-item {{ $active_class }}">
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
42
|
+
{{ if eq $menu_type "link" }}
|
|
43
|
+
<a class="link-unstyled" href="{{ .URL }}">{{ .Name }}</a>
|
|
44
|
+
{{ else if eq $menu_type "dropdown" }}
|
|
45
|
+
<div class="dropdown">
|
|
46
|
+
<button class="btn-link link-unstyled" id="{{ $menu_id }}" type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
|
47
|
+
{{ .Name }}
|
|
48
|
+
<i class="fa fa-caret-down" aria-hidden="true"></i>
|
|
49
|
+
</button>
|
|
50
|
+
<ul class="dropdown-menu" aria-labelledby="{{ $menu_id }}">
|
|
51
|
+
{{ range .Children }}
|
|
52
|
+
<li>
|
|
53
|
+
<a class="link-unstyled" href="{{ .URL }}">{{ .Name }}</a>
|
|
54
|
+
</li>
|
|
55
|
+
{{ end }}
|
|
56
|
+
</ul>
|
|
57
|
+
</div>
|
|
58
|
+
{{ else }}
|
|
59
|
+
<button
|
|
60
|
+
class="nav-link-js btn-link link-unstyled"
|
|
61
|
+
type="button"
|
|
62
|
+
aria-expanded="true"
|
|
63
|
+
data-menu-target="{{ $target_menu }}"
|
|
64
|
+
>
|
|
65
|
+
{{ .Name }}
|
|
66
|
+
</button>
|
|
67
|
+
{{ end }}
|
|
36
68
|
</li>
|
|
37
69
|
{{ end }}
|
|
38
70
|
</ul>
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
{{ $linkedin_url := $.Site.Params.linkedin_url | default "https://www.linkedin.com/company/eclipse-foundation" }}
|
|
17
17
|
|
|
18
18
|
<div class="footer-end-social">
|
|
19
|
-
<p class="footer-end-social-text">Follow Us:</p>
|
|
19
|
+
<p class="footer-end-social-text hidden-xs">Follow Us:</p>
|
|
20
20
|
<ul class="footer-end-social-links list-inline">
|
|
21
21
|
<li>
|
|
22
22
|
<a class="link-unstyled" href="{{ $twitter_url }}" title="{{ i18n "footer-sr-twitter-text" }}">
|
|
@@ -13,4 +13,8 @@
|
|
|
13
13
|
|
|
14
14
|
{{ $layout_style := $.Site.Params.layout_style | default "quicksilver" }}
|
|
15
15
|
|
|
16
|
-
{{
|
|
16
|
+
{{ if eq $.Site.Params.website_type "Working Group" }}
|
|
17
|
+
{{ partial "working_group_footer.html" . }}
|
|
18
|
+
{{ else }}
|
|
19
|
+
{{ partial (printf "%s/footer.html" $layout_style) . }}
|
|
20
|
+
{{ end }}
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
</ul>
|
|
18
18
|
</section>
|
|
19
19
|
{{ else if eq $layout_style "astro" }}
|
|
20
|
-
{{ $footer_eclipse_foundation_class := .Params.footer_section_eclipse_foundation_class | default .Site.Params.footer_section_eclipse_foundation_class | default "footer-section col-
|
|
20
|
+
{{ $footer_eclipse_foundation_class := .Params.footer_section_eclipse_foundation_class | default .Site.Params.footer_section_eclipse_foundation_class | default "footer-section col-sm-8" }}
|
|
21
21
|
<section id="footer-eclipse-foundation" class="{{ $footer_eclipse_foundation_class }}">
|
|
22
22
|
<div class="menu-heading">{{ i18n "eclipse-foundation-text" }}</div>
|
|
23
23
|
<ul class="nav">
|
|
@@ -5,20 +5,20 @@
|
|
|
5
5
|
<section class="{{ $footer_section_legal_class }}" id="footer-legal">
|
|
6
6
|
<h2 class="section-title">{{ i18n "footer-legal-section-text" }}</h2>
|
|
7
7
|
<ul class="nav">
|
|
8
|
-
<li><a href="https://www.eclipse.org/legal/privacy
|
|
9
|
-
<li><a href="https://www.eclipse.org/legal/
|
|
8
|
+
<li><a href="https://www.eclipse.org/legal/privacy/">{{ i18n "footer-legal-privacy-policy-text" }}</a></li>
|
|
9
|
+
<li><a href="https://www.eclipse.org/legal/terms-of-use/">{{ i18n "footer-legal-terms-use-text" }}</a></li>
|
|
10
10
|
<li><a href="https://www.eclipse.org/legal/compliance/">{{ i18n "footer-legal-compliance-text" }}</a></li>
|
|
11
11
|
<li><a href="https://www.eclipse.org/legal/epl-2.0/">{{ i18n "footer-legal-epl-text" }}</a></li>
|
|
12
12
|
<li><a href="https://www.eclipse.org/legal/">{{ i18n "footer-legal-resources-text" }} </a></li>
|
|
13
13
|
</ul>
|
|
14
14
|
</section>
|
|
15
15
|
{{ else if eq $layout_style "astro" }}
|
|
16
|
-
{{ $footer_section_legal_class := .Params.footer_section_legal_class | default .Site.Params.footer_section_legal_class | default "footer-section col-
|
|
16
|
+
{{ $footer_section_legal_class := .Params.footer_section_legal_class | default .Site.Params.footer_section_legal_class | default "footer-section col-sm-8" }}
|
|
17
17
|
<section id="footer-legal" class="{{ $footer_section_legal_class }}">
|
|
18
18
|
<div class="menu-heading">{{ i18n "footer-legal-section-text" }}</div>
|
|
19
19
|
<ul class="nav">
|
|
20
|
-
<li><a href="https://www.eclipse.org/legal/privacy
|
|
21
|
-
<li><a href="https://www.eclipse.org/legal/
|
|
20
|
+
<li><a href="https://www.eclipse.org/legal/privacy/">{{ i18n "footer-legal-privacy-policy-text" }}</a></li>
|
|
21
|
+
<li><a href="https://www.eclipse.org/legal/terms-of-use/">{{ i18n "footer-legal-terms-use-text" }}</a></li>
|
|
22
22
|
<li><a href="https://www.eclipse.org/legal/compliance/">{{ i18n "footer-legal-compliance-text" }}</a></li>
|
|
23
23
|
<li><a href="https://www.eclipse.org/org/documents/Community_Code_of_Conduct.php">{{ i18n "footer-legal-code-of-conduct-text" }}</a></li>
|
|
24
24
|
<li><a href="https://www.eclipse.org/legal/">{{ i18n "footer-legal-resources-text" }}</a></li>
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
</ul>
|
|
15
15
|
</section>
|
|
16
16
|
{{ else if eq $layout_style "astro" }}
|
|
17
|
-
{{ $footer_section_other_class := .Params.footer_section_other_class | default .Site.Params.footer_section_other_class | default "footer-section col-
|
|
17
|
+
{{ $footer_section_other_class := .Params.footer_section_other_class | default .Site.Params.footer_section_other_class | default "footer-section col-sm-8" }}
|
|
18
18
|
<section id="footer-more" class="{{ $footer_section_other_class }}">
|
|
19
19
|
<div class="menu-heading">{{ i18n "footer-other-section-text" }}</div>
|
|
20
20
|
<ul class="nav">
|
|
@@ -11,24 +11,25 @@
|
|
|
11
11
|
SPDX-License-Identifier: EPL-2.0
|
|
12
12
|
*/}}
|
|
13
13
|
|
|
14
|
+
{{ $hide_footer_newsletter := $.Site.Params.hide_footer_newsletter | default false }}
|
|
15
|
+
|
|
14
16
|
{{ if eq $.Site.Params.layout_style "astro" }}
|
|
15
17
|
<div id="footer-end" class="footer-section col-md-8 col-md-offset-1 col-sm-24">
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
<i class="fa fa-solid fa-envelope fa-lg" aria-hidden="true"></i>
|
|
18
|
+
{{ if not $hide_footer_newsletter }}
|
|
19
|
+
<div class="footer-end-newsletter">
|
|
20
|
+
<form id="mc-embedded-subscribe-form" action="https://eclipsecon.us6.list-manage.com/subscribe/post" method="post" novalidate target="_blank">
|
|
21
|
+
<label class="footer-end-newsletter-label" for="email">Subscribe to our Newsletter</label>
|
|
22
|
+
<div class="footer-end-newsletter-input-wrapper">
|
|
23
|
+
<input class="footer-end-newsletter-input" type="email" id="email" name="EMAIL" autocomplete="email" placeholder="Enter your email address" />
|
|
24
|
+
<div>
|
|
25
|
+
<i class="fa fa-solid fa-envelope fa-lg" aria-hidden="true"></i>
|
|
26
|
+
</div>
|
|
26
27
|
</div>
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
</
|
|
32
|
-
|
|
28
|
+
<input type="hidden" name="u" value="eaf9e1f06f194eadc66788a85" />
|
|
29
|
+
<input type="hidden" name="id" value="46e57eacf1" />
|
|
30
|
+
<input id="mc-embedded-subscribe" type="submit" name="subscribe" hidden />
|
|
31
|
+
</form>
|
|
32
|
+
</div>
|
|
33
|
+
{{ end }}
|
|
33
34
|
</div>
|
|
34
35
|
{{ end }}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{{/*
|
|
2
|
+
Copyright (c) 2024 Eclipse Foundation, Inc.
|
|
3
|
+
|
|
4
|
+
This program and the accompanying materials are made available under the
|
|
5
|
+
terms of the Eclipse Public License v. 2.0 which is available at
|
|
6
|
+
http://www.eclipse.org/legal/epl-2.0.
|
|
7
|
+
|
|
8
|
+
SPDX-License-Identifier: EPL-2.0
|
|
9
|
+
*/}}
|
|
10
|
+
|
|
11
|
+
<div class="footer-end-social-container margin-bottom-30">
|
|
12
|
+
{{ partial "socials.html" . }}
|
|
13
|
+
</div>
|
|
14
|
+
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
{{/*
|
|
2
|
+
Copyright (c) 2024 Eclipse Foundation, Inc.
|
|
3
|
+
This program and the accompanying materials are made available under the
|
|
4
|
+
terms of the Eclipse Public License v. 2.0 which is available at
|
|
5
|
+
http://www.eclipse.org/legal/epl-2.0.
|
|
6
|
+
|
|
7
|
+
SPDX-License-Identifier: EPL-2.0
|
|
8
|
+
*/}}
|
|
9
|
+
|
|
10
|
+
{{ $eclipse_foundation_logo := "https://www.eclipse.org/eclipse.org-common/themes/solstice/public/images/logo/eclipse-foundation-grey-orange.svg" }}
|
|
11
|
+
|
|
12
|
+
<p id="back-to-top">
|
|
13
|
+
<a class="visible-xs" href="#">{{ i18n "navigation-back-to-top" }}</a>
|
|
14
|
+
</p>
|
|
15
|
+
<footer class="footer footer-working-group" id="footer">
|
|
16
|
+
<div class="container">
|
|
17
|
+
{{ partial "footer_prefix.html" . }}
|
|
18
|
+
<div class="text-center margin-bottom-40">
|
|
19
|
+
<img
|
|
20
|
+
class="img-responsive margin-x-auto margin-bottom-30"
|
|
21
|
+
src="{{ $eclipse_foundation_logo }}"
|
|
22
|
+
width="150"
|
|
23
|
+
aria-labelledby="footer-working-group-ef"
|
|
24
|
+
/>
|
|
25
|
+
<div class="footer-working-group-sponsor">
|
|
26
|
+
<div class="footer-working-group-circle-group">
|
|
27
|
+
<div class="footer-working-group-circle"></div>
|
|
28
|
+
<div class="footer-working-group-circle"></div>
|
|
29
|
+
<div class="footer-working-group-circle hidden-xs"></div>
|
|
30
|
+
<div class="footer-working-group-circle hidden-xs"></div>
|
|
31
|
+
</div>
|
|
32
|
+
<p class="fw-500" id="footer-working-group-ef">An Eclipse Foundation Working Group</p>
|
|
33
|
+
<div class="footer-working-group-circle-group">
|
|
34
|
+
<div class="footer-working-group-circle"></div>
|
|
35
|
+
<div class="footer-working-group-circle hidden-xs"></div>
|
|
36
|
+
<div class="footer-working-group-circle hidden-xs"></div>
|
|
37
|
+
<div class="footer-working-group-circle"></div>
|
|
38
|
+
</div>
|
|
39
|
+
</div>
|
|
40
|
+
</div>
|
|
41
|
+
|
|
42
|
+
<div class="footer-sections row equal-height-md font-bold">
|
|
43
|
+
{{ partial "footer_links/prefix.html" . }}
|
|
44
|
+
<div class="col-sm-20 col-sm-offset-4 col-xs-24">
|
|
45
|
+
{{ partial "footer_links/links.html" . }}
|
|
46
|
+
</div>
|
|
47
|
+
{{ partial "footer_links/suffix.html" . }}
|
|
48
|
+
</div>
|
|
49
|
+
<div class="text-center">
|
|
50
|
+
{{ partial "footer_links/footer-copyright.html" . }}
|
|
51
|
+
</div>
|
|
52
|
+
<a href="#" class="scrollup">{{ i18n "navigation-back-to-top" }}</a>
|
|
53
|
+
</div>
|
|
54
|
+
</footer>
|
|
55
|
+
|
|
@@ -7,4 +7,7 @@
|
|
|
7
7
|
{{ $class := .Get "class" | default "" }}
|
|
8
8
|
{{ $viewMorePath := .Get "viewMorePath" | default "" }}
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
{{/* Converts type to kebab case and pluralizes */}}
|
|
11
|
+
{{ $id := .Get "id" | default (pluralize (replace $type "_" "-")) }}
|
|
12
|
+
|
|
13
|
+
<div class="newsroom-resources" id="{{ $id }}" data-res-wg="{{ $wg }}" data-res-title="{{ $title }}" data-res-type="{{ $type }}" data-res-template="{{ $template }}" data-res-limit="{{ $limit }}" data-res-skip="{{ $skip }}" data-res-class="{{ $class }}" data-res-view-more="{{ $viewMorePath }}"></div>
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"main": "webpack.min.js",
|
|
5
5
|
"author": "Christopher Guindon",
|
|
6
6
|
"license": "EPL-2.0",
|
|
7
|
-
"version": "0.0.
|
|
7
|
+
"version": "0.0.217",
|
|
8
8
|
"bugs": {
|
|
9
9
|
"url": "https://gitlab.eclipse.org/eclipsefdn/it/webdev/hugo-solstice-theme/-/issues"
|
|
10
10
|
},
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"readmeFilename": "README.md",
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"axios": "^1.6.0",
|
|
26
|
-
"eclipsefdn-solstice-assets": "0.0.
|
|
26
|
+
"eclipsefdn-solstice-assets": "0.0.268",
|
|
27
27
|
"json2yaml": "^1.1.0",
|
|
28
28
|
"toml": "^3.0.0"
|
|
29
29
|
},
|