eclipsefdn-hugo-solstice-theme 0.3.2 → 1.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.
Files changed (67) hide show
  1. package/CHANGELOG.md +246 -0
  2. package/config.toml +0 -1056
  3. package/exampleSite/config/_default/config.toml +2 -3
  4. package/layouts/_default/baseof.html +1 -1
  5. package/layouts/partials/breadcrumbs.html +22 -2
  6. package/layouts/partials/featured_story.html +9 -23
  7. package/layouts/partials/featured_story_popup.html +0 -6
  8. package/layouts/partials/footer.html +13 -7
  9. package/layouts/partials/footer_js.html +0 -3
  10. package/layouts/partials/footer_links/footer-copyright.html +1 -5
  11. package/layouts/partials/footer_links/footer-eclipse-foundation.html +15 -31
  12. package/layouts/partials/footer_links/footer-legal.html +11 -28
  13. package/layouts/partials/footer_links/footer-other.html +12 -27
  14. package/layouts/partials/footer_links/links.html +2 -8
  15. package/layouts/partials/footer_links/suffix.html +0 -25
  16. package/layouts/partials/head.html +10 -15
  17. package/layouts/partials/header.html +7 -3
  18. package/layouts/partials/jumbotron.html +52 -3
  19. package/layouts/partials/main_prefix.html +27 -5
  20. package/layouts/partials/main_suffix.html +16 -2
  21. package/layouts/partials/nav.html +55 -6
  22. package/layouts/partials/navbar.html +61 -5
  23. package/layouts/partials/sidebar.html +36 -7
  24. package/layouts/partials/socials.html +79 -4
  25. package/layouts/partials/toolbar.html +30 -6
  26. package/package.json +1 -1
  27. package/webpack.mix.js +0 -18
  28. package/layouts/partials/astro/breadcrumbs.html +0 -42
  29. package/layouts/partials/astro/footer.html +0 -32
  30. package/layouts/partials/astro/header.html +0 -24
  31. package/layouts/partials/astro/jumbotron.html +0 -102
  32. package/layouts/partials/astro/main_prefix.html +0 -40
  33. package/layouts/partials/astro/main_suffix.html +0 -30
  34. package/layouts/partials/astro/mega_menu.html +0 -65
  35. package/layouts/partials/astro/mobile_menu.html +0 -108
  36. package/layouts/partials/astro/nav.html +0 -74
  37. package/layouts/partials/astro/navbar.html +0 -51
  38. package/layouts/partials/astro/sidebar.html +0 -79
  39. package/layouts/partials/astro/socials.html +0 -97
  40. package/layouts/partials/astro/toolbar.html +0 -77
  41. package/layouts/partials/mega_menu.html +0 -15
  42. package/layouts/partials/mobile_menu.html +0 -18
  43. package/layouts/partials/neptune/breadcrumbs.html +0 -35
  44. package/layouts/partials/neptune/footer.html +0 -73
  45. package/layouts/partials/neptune/header.html +0 -24
  46. package/layouts/partials/neptune/jumbotron.html +0 -90
  47. package/layouts/partials/neptune/main_prefix.html +0 -38
  48. package/layouts/partials/neptune/main_suffix.html +0 -13
  49. package/layouts/partials/neptune/mega_menu.html +0 -61
  50. package/layouts/partials/neptune/mobile_menu.html +0 -54
  51. package/layouts/partials/neptune/nav.html +0 -60
  52. package/layouts/partials/neptune/navbar.html +0 -130
  53. package/layouts/partials/neptune/sidebar.html +0 -73
  54. package/layouts/partials/neptune/socials.html +0 -22
  55. package/layouts/partials/neptune/toolbar.html +0 -11
  56. package/layouts/partials/quicksilver/breadcrumbs.html +0 -42
  57. package/layouts/partials/quicksilver/footer.html +0 -26
  58. package/layouts/partials/quicksilver/header.html +0 -21
  59. package/layouts/partials/quicksilver/jumbotron.html +0 -66
  60. package/layouts/partials/quicksilver/main_prefix.html +0 -37
  61. package/layouts/partials/quicksilver/main_suffix.html +0 -30
  62. package/layouts/partials/quicksilver/nav.html +0 -70
  63. package/layouts/partials/quicksilver/navbar.html +0 -74
  64. package/layouts/partials/quicksilver/sidebar.html +0 -45
  65. package/layouts/partials/quicksilver/socials.html +0 -91
  66. package/layouts/partials/quicksilver/toolbar.html +0 -39
  67. package/layouts/partials/working_group_footer.html +0 -55
@@ -1,66 +0,0 @@
1
- {{/*
2
- Copyright (c) 2018, 2023 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
- Contributors:
9
- Christopher Guindon <chris.guindon@eclipse-foundation.org>
10
- Olivier Goulet <olivier.goulet@eclipse-foundation.org>
11
-
12
- SPDX-License-Identifier: EPL-2.0
13
- */}}
14
-
15
- {{ if isset .Page.Params "headline" }}
16
- <div class="jumbotron featured-jumbotron margin-bottom-0">
17
- <div class="container">
18
- <div class="row">
19
- <div class="{{- .Params.jumbotron_class | default .Site.Params.jumbotron_class | default "col-md-20 col-md-offset-2 col-sm-18 col-sm-offset-3"}}">
20
- <h1>
21
- {{ if eq .Page.Params.format_title false }}
22
- {{ .Page.Params.headline | safeHTML }}
23
- {{ else }}
24
- {{ .Page.Params.headline | title | safeHTML }}
25
- {{ end }}
26
- </h1>
27
- {{ if isset .Page.Params "subtitle" }}
28
- <h2>{{ .Page.Params.subtitle | title | safeHTML }}</h2>
29
- {{end}}
30
-
31
- {{ if isset .Page.Params "tagline" }}
32
- <div class="row">
33
- <div class="{{- .Params.jumbotron_tagline_class | default .Site.Params.jumbotron_tagline_class | default "col-sm-18 col-sm-offset-3"}}">
34
- <p>{{ .Page.Params.tagline | safeHTML }}</p>
35
- </div>
36
- </div>
37
- {{end}}
38
-
39
- {{ if isset .Page.Params "custom_jumbotron" }}
40
- <div class="row">
41
- <div class="{{- .Params.custom_jumbotron_class | default .Site.Params.custom_jumbotron_class | default "col-sm-18 col-sm-offset-3"}}">
42
- {{ .Page.Params.custom_jumbotron | safeHTML }}
43
- </div>
44
- </div>
45
- {{end}}
46
-
47
- {{ if isset .Page.Params "links" }}
48
- {{- with .Params.jumbotron_btn_class | default .Site.Params.jumbotron_btn_class | default "btn btn-primary"}}{{ $.Scratch.Set "jumbotron_btn" . }}{{end}}
49
- <ul class="list-inline">
50
- {{range $key,$val := index .Page.Params.links}}
51
- {{ $btn_class := "" }}
52
- {{ with (index $val 2) }}
53
- {{ $btn_class = .class }}
54
- {{ else }}
55
- {{ $btn_class = $.Scratch.Get "jumbotron_btn" }}
56
- {{ end }}
57
- <li><a class="{{ $btn_class }}" href="{{ (index $val 0).href}}">{{ (index $val 1).text}}</a></li>
58
- {{end}}
59
- </ul>
60
- {{end}}
61
- </div>
62
- </div>
63
- </div>
64
- </div>
65
- {{ end }}
66
-
@@ -1,37 +0,0 @@
1
- {{/*
2
- Copyright (c) 2019 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
- Contributors:
9
- Eric Poirier <eric.poirier@eclipse-foundation.org>
10
-
11
- SPDX-License-Identifier: EPL-2.0
12
- */}}
13
-
14
- {{ partial "collapsible-menu.html" . }}
15
- <main>
16
- <div class="{{- .Params.container | default .Site.Params.container | default "container"}}">
17
- {{ if ne .Page.Params.hide_sidebar true }}
18
- <div class="row">
19
- <div class="{{- .Params.main_content_class | default .Site.Params.main_content_class | default "col-md-18 padding-bottom-30"}}">
20
- {{ end }}
21
-
22
- {{ if eq .Page.Params.is_deprecated true }}
23
- <div class="alert alert-danger margin-top-20" role="alert">
24
- This page is deprecated and may contain some information that is no longer relevant or accurate.
25
- </div>
26
- {{ end }}
27
-
28
- {{ if ne .Page.Params.hide_page_title true }}
29
- <h1>
30
- {{ if eq .Page.Params.format_title false }}
31
- {{ .Title | safeHTML }}
32
- {{ else }}
33
- {{ .Title | safeHTML | title }}
34
- {{ end }}
35
- </h1>
36
- {{ end }}
37
-
@@ -1,30 +0,0 @@
1
- <!--
2
- Copyright (c) 2019, 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
- Contributors:
9
- Eric Poirier <eric.poirier@eclipse-foundation.org>
10
-
11
- SPDX-License-Identifier: EPL-2.0
12
- -->
13
-
14
- {{ partial "related_links.html" .}}
15
-
16
- {{ if ne .Page.Params.hide_sidebar true }}
17
- {{ $sidebarLayout := .Page.Params.sidebar_layout | default .Site.Params.sidebar_layout | default "default" }}
18
- </div>
19
- <div class="{{- .Params.main_sidebar_class | default .Site.Params.main_sidebar_class | default "col-md-6 padding-bottom-30"}}">
20
- {{ if eq $sidebarLayout "default" }}
21
- {{ partial "sidebar.html" . }}
22
- {{ else if eq $sidebarLayout "sidebar_block" }}
23
- {{ partial "sidebar-block.html" . }}
24
- {{ end }}
25
- </div>
26
- </div>
27
- {{ end }}
28
- </div>
29
- </main>
30
-
@@ -1,70 +0,0 @@
1
- {{/*
2
- Copyright (c) 2018, 2023 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
- Contributors:
9
- Christopher Guindon <chris.guindon@eclipse-foundation.org>
10
- Olivier Goulet <olivier.goulet@eclipse-foundation.org>
11
-
12
- SPDX-License-Identifier: EPL-2.0
13
- */}}
14
-
15
- {{ $main_menu := .Scratch.Get "main_menu" }}
16
-
17
- {{ $currentNode := . }}
18
- {{ range (index .Site.Menus $main_menu) }}
19
- {{ if .HasChildren }}
20
- {{ $multicol := false }}
21
- {{ range .Children }}
22
- {{ if .HasChildren }}
23
- {{ $multicol = true }}
24
- {{ end }}
25
- {{ end }}
26
- <li class="dropdown {{ if $multicol -}} eclipse-more {{- end }}">
27
- <a href="#" data-toggle="dropdown" class="dropdown-toggle">
28
- {{ .Pre }}
29
- <span>{{ .Name }}</span>
30
- <b class="caret"></b>
31
- </a>
32
- <ul class="dropdown-menu">
33
- {{ if eq $multicol true }}
34
- {{ $colClass := "col-sm-12" }}
35
- {{ if gt (len .Children) 2 }}
36
- {{ $colClass = "col-sm-8" }}
37
- {{ end }}
38
- <li>
39
- <!-- Content container to add padding -->
40
- <div class="yamm-content">
41
- <div class="row">
42
- {{ range .Children }}
43
- <ul class="{{ $colClass }} list-unstyled padding-bottom-20">
44
- <li><p><a href="{{.URL}}"><strong>{{ .Name }}</strong></a></p>
45
- </li>
46
- {{ range .Children }}
47
- <li {{if $currentNode.IsMenuCurrent "{{ $main_menu }}" . }} class="active"{{end}}><a href="{{.URL}}">{{ .Name }}</a> </li>
48
- {{ end }}
49
- </ul>
50
- {{ end }}
51
- </div>
52
- </div>
53
- </li>
54
- {{ else }}
55
- {{ range .Children }}
56
- <li {{if $currentNode.IsMenuCurrent "{{ $main_menu }}" . }} class="active"{{end}}><a href="{{.URL}}">{{ .Name }}</a> </li>
57
- {{ end }}
58
- {{ end }}
59
- </ul>
60
- {{else}}
61
- <li>
62
- <a class="" href="{{.URL}}">
63
- {{ .Pre }}
64
- {{ .Name }}
65
- </a>
66
- {{end}}
67
- </li>
68
- {{end}}
69
- {{ partial "nav_more.html" . }}
70
- {{ partial "google_search.html" . }}
@@ -1,74 +0,0 @@
1
- {{/*
2
- Copyright (c) 2018 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
- Contributors:
9
- Christopher Guindon <chris.guindon@eclipse-foundation.org>
10
-
11
- SPDX-License-Identifier: EPL-2.0
12
- */}}
13
-
14
- <div class="{{ $.Site.Params.navbar_wrapper_classes | default "navbar-wrapper" }}">
15
- <div class="container">
16
- <div class="row" id="header-row">
17
- <div class="{{ $.Site.Params.header_left_classes | default "col-sm-5 col-md-4" }}" id="header-left">
18
- <div class="wrapper-logo-default">
19
-
20
- {{ with .Page.Params.logo | default .Site.Params.logo | default "https://www.eclipse.org/eclipse.org-common/themes/solstice/public/images/logo/eclipse-foundation-white-orange.svg" }}
21
-
22
- {{ $currentPageLogo := . }}
23
- {{ $currentPageLogoTitle := $.Site.Title }}
24
- {{ $currentPageLogoLink := "" }}
25
-
26
- {{ range $.Site.Data.subsites_custom_logo.items }}
27
- {{ $section := $.Site.GetPage (.page_url) }}
28
- {{ if or (eq ($.Section) ($section)) ( $.Page.IsDescendant $section ) }}
29
- {{ $currentPageLogo = .logo }}
30
- {{ $currentPageLogoTitle = .logo_title }}
31
- {{ $currentPageLogoLink = .logo_url }}
32
- {{ end }}
33
- {{ end }}
34
-
35
- <a title="{{ $currentPageLogoTitle }}" href="{{ $currentPageLogoLink | absLangURL }}">
36
- <img width="{{ $.Page.Params.logo_width | default $.Site.Params.logo_width | default "140"}}" class="logo-eclipse-default img-responsive hidden-xs" src="{{ $currentPageLogo | relURL }}" alt="{{ $currentPageLogoTitle }}" />
37
- </a>
38
- {{ end }}
39
-
40
- </div>
41
- </div>
42
- {{ $has_cfa := 0 }}
43
- {{ if (and (isset .Site.Params "call_for_action_text") (isset .Site.Params "call_for_action_url") (isset .Site.Params "call_for_action_icon")) }}
44
- {{ $has_cfa = 1 }}
45
- {{ end }}
46
- <div class="{{ $.Site.Params.main_menu_wrapper_classes | default "col-sm-19 col-md-20 margin-top-10" }}{{ if eq $has_cfa 0}} reset{{ end }}" id="main-menu-wrapper">
47
- {{ $normalized_cta_url := .Site.Params.call_for_action_url }}
48
- {{ $hide_call_for_action := .Page.Params.hide_call_for_action }}
49
- {{ if (eq (len (findRE `(\.[^\/]{3,4}|\/)$` $normalized_cta_url)) 0) }}
50
- {{ $normalized_cta_url = printf "%s/" $normalized_cta_url }}
51
- {{ end }}
52
-
53
- {{ $abs_cfa := printf "%s" ($normalized_cta_url | relURL) }}
54
- {{ $is_cfa_page := 0 }}
55
- {{ if or (eq $normalized_cta_url .Permalink) (eq $abs_cfa .Permalink) }}
56
- {{ $is_cfa_page = 1 }}
57
- {{ end }}
58
- {{ if and (eq $has_cfa 1) (not (or (eq .Site.Params.hide_cfa_same_page "true") (eq $is_cfa_page 1) (eq $hide_call_for_action true))) }}
59
- <div class="{{ $.Site.Params.call_for_action_wrapper_classes | default "float-right hidden-xs" }}" id="btn-call-for-action">
60
- <div id="btn-call-for-action"><a href="{{ .Site.Params.call_for_action_url }}" class="{{ .Site.Params.call_for_action_classes | default "btn btn-huge btn-warning" }}"><i class="fa {{ .Site.Params.call_for_action_icon }}"></i> {{ .Site.Params.call_for_action_text }}</a></div>
61
- </div>
62
- {{ end }}
63
- <div class="{{ $.Site.Params.main_menu_classes | default "navbar float-sm-right yamm" }}" id="main-menu">
64
- <div class="navbar-collapse collapse reset float-right" id="navbar-main-menu">
65
- <ul class="nav navbar-nav">
66
- {{ partial "nav.html" . }}
67
- </ul>
68
- </div>
69
- {{ partial "nav_toggle.html" . }}
70
- </div>
71
- </div>
72
- </div>
73
- </div>
74
- </div>
@@ -1,45 +0,0 @@
1
- {{/*
2
- Copyright (c) 2018 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
- Contributors:
7
- Christopher Guindon <chris.guindon@eclipse-foundation.org>
8
- SPDX-License-Identifier: EPL-2.0
9
- */}}
10
-
11
- {{ if isset .Site.Menus "sidebar" }}
12
- {{ $currentPage := . }}
13
- {{ .Scratch.Set "currentSection" "home" }}
14
-
15
- {{ if $currentPage.Section }}
16
- {{ .Scratch.Set "currentSection" $currentPage.Section }}
17
- {{ end }}
18
-
19
- {{$currentSection := .Scratch.Get "currentSection" }}
20
-
21
- {{ range .Site.Menus.sidebar }}
22
- {{$parentItem := . }}
23
-
24
- {{ if and (.HasChildren) (eq $currentSection $parentItem.Identifier) }}
25
- <aside id="main-sidebar" class="subpage-sidebar">
26
- <ul id="leftnav" class="ul-left-nav fa-ul hidden-print">
27
- <li class="separator">
28
- <a class="separator" href="{{ .URL | relURL }}">{{ $parentItem.Name }}</a>
29
- </li>
30
- {{ range .Children }}
31
- {{ if or (eq $parentItem.Identifier $currentSection) (eq .Parent $currentSection) }}
32
- <li{{if $currentPage.IsMenuCurrent "main" . }} class="active"{{end}}>
33
- {{ .Pre }}
34
- <a href="{{ .URL | relURL }}" target="_self">{{ .Name }}</a>
35
- </li>
36
- {{ end }}
37
- {{ end }}
38
- </ul>
39
- </aside>
40
- {{ end }}
41
- {{ end }}
42
- {{ if isset $currentPage.Params "custom_sidebar" }}
43
- {{ $currentPage.Params.custom_sidebar | safeHTML }}
44
- {{ end }}
45
- {{ end }}
@@ -1,91 +0,0 @@
1
- {{/*
2
- Copyright (c) 2020, 2022 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
- Contributors:
8
- Martin Lowe <martin.lowe@eclipse-foundation.org>
9
- Christopher Guindon <chris.guindon@eclipse-foundation.org>
10
-
11
- SPDX-License-Identifier: EPL-2.0
12
- */}}
13
-
14
- {{ $twitter_url := $.Site.Params.twitter_url }}
15
- {{ $facebook_url := $.Site.Params.facebook_url }}
16
- {{ $instagram_url := $.Site.Params.instagram_url }}
17
- {{ $youtube_url := $.Site.Params.youtube_url }}
18
- {{ $linkedin_url := $.Site.Params.linkedin_url }}
19
- {{ $bluesky_url := $.Site.Params.bluesky_url }}
20
-
21
- {{/* To support the legacy "socialmedia_url" params */}}
22
- {{ $socials := slice }}
23
- {{ $using_legacy_socials := cond (or (ne $facebook_url nil) (ne $twitter_url nil) (ne $instagram_url nil) (ne $youtube_url nil) (ne $linkedin_url nil) (ne $bluesky_url nil)) true false }}
24
-
25
- {{ if $using_legacy_socials }}
26
- {{ with $twitter_url }}
27
- {{ $x := (dict
28
- "name" "X"
29
- "url" .
30
- "icon" "fa-brands fa-x-twitter"
31
- ) }}
32
- {{ $socials = $socials | append $x }}
33
- {{ end }}
34
- {{ with $facebook_url }}
35
- {{ $facebook := (dict
36
- "name" "Facebook"
37
- "url" .
38
- "icon" "fa-brands fa-facebook-f"
39
- ) }}
40
- {{ $socials = $socials | append $facebook }}
41
- {{ end }}
42
- {{ with $instagram_url }}
43
- {{ $instagram := (dict
44
- "name" "Instagram"
45
- "url" .
46
- "icon" "fa-brands fa-instagram"
47
- ) }}
48
- {{ $socials = $socials | append $instagram }}
49
- {{ end }}
50
- {{ with $youtube_url }}
51
- {{ $youtube := (dict
52
- "name" "YouTube"
53
- "url" .
54
- "icon" "fa-brands fa-youtube"
55
- ) }}
56
- {{ $socials = $socials | append $youtube }}
57
- {{ end }}
58
- {{ with $linkedin_url }}
59
- {{ $linkedin := (dict
60
- "name" "LinkedIn"
61
- "url" .
62
- "icon" "fa-brands fa-linkedin-in"
63
- ) }}
64
- {{ $socials = $socials | append $linkedin }}
65
- {{ end }}
66
- {{ with $bluesky_url }}
67
- {{ $bluesky := (dict
68
- "name" "Bluesky"
69
- "url" .
70
- "icon" "fa-brands fa-bluesky"
71
- ) }}
72
- {{ $socials = $socials | append $bluesky }}
73
- {{ end }}
74
- {{ else }}
75
- {{ $socials = $.Site.Params.socials }}
76
- {{ end }}
77
-
78
- <div class="col-sm-8 social-media">
79
- <ul class="list-unstyled social-links">
80
- {{ range $socials }}
81
- {{ $i18n_key := printf "footer-sr-%s-text" (urlize (lower .name)) }}
82
- {{ $text := i18n $i18n_key | default .name }}
83
- {{ $title_key := printf "footer-sr-%s-account" (urlize (lower .name)) }}
84
- <li><a class="social-media-link fa-stack fa-lg" href="{{ .url }}" {{ with (i18n $title_key) }}title="{{ . }}"{{ end }}>
85
- <i class="fa-regular fa-circle fa-stack-2x"></i>
86
- <i class="{{ .icon }} fa-stack-1x"></i>
87
- <span class="sr-only">{{ $text }}</span>
88
- </a></li>
89
- {{ end }}
90
- </ul>
91
- </div>
@@ -1,39 +0,0 @@
1
- {{/*
2
- Copyright (c) 2018 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
- Contributors:
9
- Christopher Guindon <chris.guindon@eclipse-foundation.org>
10
-
11
- SPDX-License-Identifier: EPL-2.0
12
- */}}
13
-
14
- <div class="clearfix toolbar-container-wrapper">
15
- <div class="container">
16
- <div class="text-right toolbar-row row hidden-print">
17
- <div class="col-md-24 row-toolbar-col">
18
- <ul class="list-inline">
19
- <li><a href="https://accounts.eclipse.org/user/edit" class="" data-tab-destination="tab-profile"><i class="fa fa-edit fa-fw"></i>&nbsp;{{ i18n "navbar-edit-acccount-label" }}</a></li>
20
- <li><a class="toolbar-link toolbar-manage-cookies dropdown-toggle"><i class="fa fa-wrench"></i>&nbsp;{{ i18n "navbar-manage-cookies-label" }}</a></li>
21
- {{ if gt (len .AllTranslations) 1 }}
22
- <li class="language-selector dropdown">
23
- <a href="#" data-toggle="dropdown" class="dropdown-toggle">
24
- <i class="fa fa-globe"></i>&nbsp;
25
- <span> {{ .Language.LanguageName }}</span>
26
- <b class="caret"></b>
27
- </a>
28
- <ul class="dropdown-menu">
29
- {{ range .AllTranslations }}
30
- <li><a href="{{ .Permalink }}">{{ .Language.LanguageName }}</a></li>
31
- {{ end }}
32
- </ul>
33
- </li>
34
- {{ end }}
35
- </ul>
36
- </div>
37
- </div>
38
- </div>
39
- </div>
@@ -1,55 +0,0 @@
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
-