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.
- package/CHANGELOG.md +246 -0
- package/config.toml +0 -1056
- package/exampleSite/config/_default/config.toml +2 -3
- package/layouts/_default/baseof.html +1 -1
- package/layouts/partials/breadcrumbs.html +22 -2
- package/layouts/partials/featured_story.html +9 -23
- package/layouts/partials/featured_story_popup.html +0 -6
- package/layouts/partials/footer.html +13 -7
- package/layouts/partials/footer_js.html +0 -3
- package/layouts/partials/footer_links/footer-copyright.html +1 -5
- package/layouts/partials/footer_links/footer-eclipse-foundation.html +15 -31
- package/layouts/partials/footer_links/footer-legal.html +11 -28
- package/layouts/partials/footer_links/footer-other.html +12 -27
- package/layouts/partials/footer_links/links.html +2 -8
- package/layouts/partials/footer_links/suffix.html +0 -25
- package/layouts/partials/head.html +10 -15
- package/layouts/partials/header.html +7 -3
- package/layouts/partials/jumbotron.html +52 -3
- package/layouts/partials/main_prefix.html +27 -5
- package/layouts/partials/main_suffix.html +16 -2
- package/layouts/partials/nav.html +55 -6
- package/layouts/partials/navbar.html +61 -5
- package/layouts/partials/sidebar.html +36 -7
- package/layouts/partials/socials.html +79 -4
- package/layouts/partials/toolbar.html +30 -6
- package/package.json +1 -1
- package/webpack.mix.js +0 -18
- package/layouts/partials/astro/breadcrumbs.html +0 -42
- package/layouts/partials/astro/footer.html +0 -32
- package/layouts/partials/astro/header.html +0 -24
- package/layouts/partials/astro/jumbotron.html +0 -102
- package/layouts/partials/astro/main_prefix.html +0 -40
- package/layouts/partials/astro/main_suffix.html +0 -30
- package/layouts/partials/astro/mega_menu.html +0 -65
- package/layouts/partials/astro/mobile_menu.html +0 -108
- package/layouts/partials/astro/nav.html +0 -74
- package/layouts/partials/astro/navbar.html +0 -51
- package/layouts/partials/astro/sidebar.html +0 -79
- package/layouts/partials/astro/socials.html +0 -97
- package/layouts/partials/astro/toolbar.html +0 -77
- package/layouts/partials/mega_menu.html +0 -15
- package/layouts/partials/mobile_menu.html +0 -18
- package/layouts/partials/neptune/breadcrumbs.html +0 -35
- package/layouts/partials/neptune/footer.html +0 -73
- package/layouts/partials/neptune/header.html +0 -24
- package/layouts/partials/neptune/jumbotron.html +0 -90
- package/layouts/partials/neptune/main_prefix.html +0 -38
- package/layouts/partials/neptune/main_suffix.html +0 -13
- package/layouts/partials/neptune/mega_menu.html +0 -61
- package/layouts/partials/neptune/mobile_menu.html +0 -54
- package/layouts/partials/neptune/nav.html +0 -60
- package/layouts/partials/neptune/navbar.html +0 -130
- package/layouts/partials/neptune/sidebar.html +0 -73
- package/layouts/partials/neptune/socials.html +0 -22
- package/layouts/partials/neptune/toolbar.html +0 -11
- package/layouts/partials/quicksilver/breadcrumbs.html +0 -42
- package/layouts/partials/quicksilver/footer.html +0 -26
- package/layouts/partials/quicksilver/header.html +0 -21
- package/layouts/partials/quicksilver/jumbotron.html +0 -66
- package/layouts/partials/quicksilver/main_prefix.html +0 -37
- package/layouts/partials/quicksilver/main_suffix.html +0 -30
- package/layouts/partials/quicksilver/nav.html +0 -70
- package/layouts/partials/quicksilver/navbar.html +0 -74
- package/layouts/partials/quicksilver/sidebar.html +0 -45
- package/layouts/partials/quicksilver/socials.html +0 -91
- package/layouts/partials/quicksilver/toolbar.html +0 -39
- package/layouts/partials/working_group_footer.html +0 -55
|
@@ -1,90 +0,0 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
Copyright (c) 2025 Eclipse Foundation AISBL
|
|
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
|
-
{{ $jumbotron_container := .Page.Params.jumbotron_container | default "container" }}
|
|
12
|
-
{{ $jumbotron_class := .Params.jumbotron_class | default .Site.Params.jumbotron_class | default "col-xs-24" }}
|
|
13
|
-
{{ $headline := .Page.Params.headline }}
|
|
14
|
-
{{ $preheadline := .Page.Params.preheadline }}
|
|
15
|
-
{{ $tagline := .Page.Params.tagline }}
|
|
16
|
-
{{ $links := .Page.Params.links }}
|
|
17
|
-
{{ $default_btn_class := "btn btn-primary" }}
|
|
18
|
-
|
|
19
|
-
{{ $jumbotron_background_class := .Page.Params.jumbotron_background_class | default .Site.Params.jumbotron_background_class | default "bg bg-hero-1" }}
|
|
20
|
-
|
|
21
|
-
{{ .Store.Set "has_jumbotron" (or (isset .Page.Params "headline") (isset .Page.Params "custom_jumbotron")) }}
|
|
22
|
-
{{ $has_jumbotron := .Store.Get "has_jumbotron" }}
|
|
23
|
-
|
|
24
|
-
{{ if $has_jumbotron }}
|
|
25
|
-
<section class="featured-jumbotron fade-group {{ $jumbotron_background_class }}">
|
|
26
|
-
<div class="{{ $jumbotron_container }}">
|
|
27
|
-
<div class="{{ $jumbotron_class }}">
|
|
28
|
-
<div class="featured-jumbotron-heading-group">
|
|
29
|
-
{{ with $.Page.Params.preheadline }}
|
|
30
|
-
<p
|
|
31
|
-
class="featured-jumbotron-preheadline fade-item"
|
|
32
|
-
data-fade-duration="0.5"
|
|
33
|
-
data-fade-direction="none"
|
|
34
|
-
>
|
|
35
|
-
{{- . | safeHTML -}}
|
|
36
|
-
</p>
|
|
37
|
-
{{ end }}
|
|
38
|
-
{{ with $headline }}
|
|
39
|
-
<h1
|
|
40
|
-
class="featured-jumbotron-headline fade-item"
|
|
41
|
-
data-fade-duration="0.5"
|
|
42
|
-
data-fade-direction="none"
|
|
43
|
-
>
|
|
44
|
-
{{- . | safeHTML -}}
|
|
45
|
-
</h1>
|
|
46
|
-
{{ end }}
|
|
47
|
-
</div>
|
|
48
|
-
{{ with $tagline }}
|
|
49
|
-
<p
|
|
50
|
-
class="featured-jumbotron-tagline fade-item"
|
|
51
|
-
data-fade-duration="0.5"
|
|
52
|
-
data-fade-direction="none"
|
|
53
|
-
>
|
|
54
|
-
{{- . -}}
|
|
55
|
-
</p>
|
|
56
|
-
{{ end }}
|
|
57
|
-
{{ if isset .Page.Params "custom_jumbotron" }}
|
|
58
|
-
<div class="row">
|
|
59
|
-
<div class="{{- .Params.custom_jumbotron_class | default .Site.Params.custom_jumbotron_class | default "col-xs-24" }}">
|
|
60
|
-
{{ .Page.Params.custom_jumbotron | safeHTML }}
|
|
61
|
-
</div>
|
|
62
|
-
</div>
|
|
63
|
-
{{ end }}
|
|
64
|
-
{{ with $links }}
|
|
65
|
-
<ul class="featured-jumbotron-links list-inline">
|
|
66
|
-
{{ range $key,$val := index . }}
|
|
67
|
-
{{ $btn_class := "" }}
|
|
68
|
-
{{ with (index $val 2) }}
|
|
69
|
-
{{ $btn_class = .class }}
|
|
70
|
-
{{ else }}
|
|
71
|
-
{{ $btn_class = $default_btn_class }}
|
|
72
|
-
{{ end }}
|
|
73
|
-
<li>
|
|
74
|
-
<a
|
|
75
|
-
class="{{ $btn_class }} fade-item"
|
|
76
|
-
href="{{ (index $val 0).href }}"
|
|
77
|
-
{{ with (index $val 3) -}} id="{{ .id | safeHTMLAttr }}" {{- end }}
|
|
78
|
-
data-fade-duration="0.5"
|
|
79
|
-
data-fade-direction="none"
|
|
80
|
-
>
|
|
81
|
-
{{ (index $val 1).text}}
|
|
82
|
-
</a>
|
|
83
|
-
</li>
|
|
84
|
-
{{ end }}
|
|
85
|
-
</ul>
|
|
86
|
-
{{ end }}
|
|
87
|
-
</div>
|
|
88
|
-
</div>
|
|
89
|
-
</section>
|
|
90
|
-
{{ end }}
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
Copyright (c) 2025 Eclipse Foundation AISBL
|
|
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
|
-
{{ $has_jumbotron := .Store.Get "has_jumbotron" }}
|
|
12
|
-
<main id="main">
|
|
13
|
-
{{ partial "jumbotron.html" . }}
|
|
14
|
-
{{ partial "breadcrumbs.html" . }}
|
|
15
|
-
<div class="{{- .Params.container | default .Site.Params.container | default "container padding-bottom-30"}}">
|
|
16
|
-
{{ if ne .Page.Params.hide_sidebar true }}
|
|
17
|
-
<div class="row">
|
|
18
|
-
<div class='{{- .Params.main_sidebar_class | default .Site.Params.main_sidebar_class | default "col-md-6" }}'>
|
|
19
|
-
{{ partial "sidebar.html" . }}
|
|
20
|
-
</div>
|
|
21
|
-
<div class="{{- .Params.main_content_class | default .Site.Params.main_content_class | default "col-md-18"}}">
|
|
22
|
-
{{ end }}
|
|
23
|
-
{{ if eq .Page.Params.is_deprecated true }}
|
|
24
|
-
{{ $msg := .Page.Params.deprecation_msg | default "This page is deprecated and may contain some information that is no longer relevant or accurate." }}
|
|
25
|
-
<div class="alert alert-danger margin-top-20" role="alert">
|
|
26
|
-
{{ $msg }}
|
|
27
|
-
</div>
|
|
28
|
-
{{ end }}
|
|
29
|
-
|
|
30
|
-
{{ if ne .Page.Params.hide_page_title true }}
|
|
31
|
-
{{ if $has_jumbotron }}
|
|
32
|
-
<p class="h1">{{ .Title | safeHTML }}</p>
|
|
33
|
-
{{ else }}
|
|
34
|
-
<h1>{{ .Title | safeHTML }}</h1>
|
|
35
|
-
{{ end }}
|
|
36
|
-
{{ end }}
|
|
37
|
-
|
|
38
|
-
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
Copyright (c) 2025 Eclipse Foundation AISBL
|
|
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
|
-
{{ partial "related_links.html" .}}
|
|
12
|
-
</div>
|
|
13
|
-
</main>
|
|
@@ -1,61 +0,0 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
Copyright (c) 2025 Eclipse Foundation AISBL
|
|
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
|
-
{{ $main_menu := .Scratch.Get "main_menu" }}
|
|
12
|
-
{{ $current_page := . }}
|
|
13
|
-
|
|
14
|
-
{{ $has_mega_menu := false }}
|
|
15
|
-
{{/* Unless if any of the menus are 3-levels deep then we will show a mega menu. */}}
|
|
16
|
-
{{ with (index .Site.Menus $main_menu) }}
|
|
17
|
-
{{ range . }}
|
|
18
|
-
{{ if .HasChildren }}
|
|
19
|
-
{{ range .Children }}
|
|
20
|
-
{{ if .HasChildren }}
|
|
21
|
-
{{ $has_mega_menu = true }}
|
|
22
|
-
{{ end }}
|
|
23
|
-
{{ end }}
|
|
24
|
-
{{ end }}
|
|
25
|
-
{{ end }}
|
|
26
|
-
{{ end }}
|
|
27
|
-
|
|
28
|
-
{{ if $has_mega_menu }}
|
|
29
|
-
<div class="mega-menu">
|
|
30
|
-
{{ range (index .Site.Menus $main_menu) }}
|
|
31
|
-
{{ $menu_id := .Identifier | default (lower .Name) }}
|
|
32
|
-
{{ $menu_id = printf "%s-menu" $menu_id }}
|
|
33
|
-
<div class="menu hidden" id="{{ $menu_id }}">
|
|
34
|
-
<div class="container">
|
|
35
|
-
<nav>
|
|
36
|
-
{{ range .Children }}
|
|
37
|
-
<div class="submenu" {{ with .Params.style -}} style="{{ . | safeCSS }}" {{- end }}>
|
|
38
|
-
<div class="menu-heading-group">
|
|
39
|
-
{{ with .Pre }}
|
|
40
|
-
<span class="menu-pre">
|
|
41
|
-
{{ . | safeHTML }}
|
|
42
|
-
</span>
|
|
43
|
-
{{ end }}
|
|
44
|
-
<h2 class="menu-heading">{{ .Name }}</h2>
|
|
45
|
-
</div>
|
|
46
|
-
<ul>
|
|
47
|
-
{{ range .Children }}
|
|
48
|
-
<li>
|
|
49
|
-
<a href="{{ .URL }}" {{ with .Params.target -}} target="{{ . | safeHTMLAttr }}" {{- end }}>{{ .Name }}</a>
|
|
50
|
-
{{ with .Params.external }}<i class="external-icon fa-solid fa-arrow-up-right-from-square" aria-hidden="true"></i>{{ end }}
|
|
51
|
-
</li>
|
|
52
|
-
{{ end }}
|
|
53
|
-
</ul>
|
|
54
|
-
</div>
|
|
55
|
-
{{ end }}
|
|
56
|
-
</nav>
|
|
57
|
-
</div>
|
|
58
|
-
</div>
|
|
59
|
-
{{ end }}
|
|
60
|
-
</div>
|
|
61
|
-
{{ end }}
|
|
@@ -1,54 +0,0 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
Copyright (c) 2025 Eclipse Foundation AISBL
|
|
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
|
-
{{ $main_menu := .Scratch.Get "main_menu" }}
|
|
12
|
-
{{ $current_page := . }}
|
|
13
|
-
<div class="mobile-menu hidden">
|
|
14
|
-
<nav class="mobile-menu-nav">
|
|
15
|
-
{{ template "mobile_menu_list" (dict "current_page" $current_page "menu_id" nil "menu" (index .Site.Menus $main_menu)) }}
|
|
16
|
-
</nav>
|
|
17
|
-
</div>
|
|
18
|
-
|
|
19
|
-
{{ define "mobile_menu_list" }}
|
|
20
|
-
{{ $current_page := .current_page }}
|
|
21
|
-
|
|
22
|
-
{{ $has_parent := false }}
|
|
23
|
-
|
|
24
|
-
<!-- Detect whether this menu is the root or not. -->
|
|
25
|
-
{{ range .menu }}
|
|
26
|
-
{{ if .Parent }}
|
|
27
|
-
{{ $has_parent = true }}
|
|
28
|
-
{{ end }}
|
|
29
|
-
{{ end }}
|
|
30
|
-
|
|
31
|
-
<ul {{ if $has_parent -}} class="collapse" id="{{ .menu_id }}" {{- end -}}>
|
|
32
|
-
{{ range .menu }}
|
|
33
|
-
{{ $menu_id := .Identifier | default (lower .Name) }}
|
|
34
|
-
{{ $target_menu := printf "mobile-menu-%s" $menu_id }}
|
|
35
|
-
<li>
|
|
36
|
-
{{ if .HasChildren }}
|
|
37
|
-
<a
|
|
38
|
-
role="button"
|
|
39
|
-
href="#{{ $target_menu }}"
|
|
40
|
-
data-toggle="collapse"
|
|
41
|
-
aria-expanded="false"
|
|
42
|
-
aria-controls="{{ $target_menu }}"
|
|
43
|
-
>
|
|
44
|
-
{{ .Name }}
|
|
45
|
-
<i class="fa-solid fa-chevron-down" aria-hidden="true"></i>
|
|
46
|
-
</a>
|
|
47
|
-
{{ template "mobile_menu_list" (dict "current_page" $current_page "menu_id" $target_menu "menu" .Children) }}
|
|
48
|
-
{{ else }}
|
|
49
|
-
<a href="{{ .URL }}" {{ with .Params.target -}} target="{{ . | safeHTMLAttr }}" {{- end }}>{{ .Name }}</a>
|
|
50
|
-
{{ end }}
|
|
51
|
-
</li>
|
|
52
|
-
{{ end }}
|
|
53
|
-
</ul>
|
|
54
|
-
{{ end }}
|
|
@@ -1,60 +0,0 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
Copyright (c) 2025 Eclipse Foundation AISBL
|
|
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
|
-
{{ $main_menu := .Scratch.Get "main_menu" }}
|
|
12
|
-
{{ $current_page := . }}
|
|
13
|
-
|
|
14
|
-
<nav class="navigation-bar-nav hidden-xs hidden-sm">
|
|
15
|
-
<ul>
|
|
16
|
-
{{ range (index .Site.Menus $main_menu) }}
|
|
17
|
-
{{ $menu_id := .Identifier | default (lower .Name) }}
|
|
18
|
-
{{ $target_menu := printf "%s-menu" $menu_id }}
|
|
19
|
-
{{ $active_class := "" }}
|
|
20
|
-
{{ $menu_type := "link" }}
|
|
21
|
-
|
|
22
|
-
{{ if $current_page.IsMenuCurrent $main_menu . }}
|
|
23
|
-
{{ $active_class = "active" }}
|
|
24
|
-
{{ end }}
|
|
25
|
-
|
|
26
|
-
{{/* If the menu has children, we will show a dropdown */}}
|
|
27
|
-
{{ if .HasChildren }}
|
|
28
|
-
{{ $menu_type = "dropdown" }}
|
|
29
|
-
{{ end }}
|
|
30
|
-
|
|
31
|
-
{{/* Unless if any of the menus are 3-levels deep then we will show a mega menu. */}}
|
|
32
|
-
{{ range .Children }}
|
|
33
|
-
{{ if .HasChildren }}
|
|
34
|
-
{{ $menu_type = "mega" }}
|
|
35
|
-
{{ end }}
|
|
36
|
-
{{ end }}
|
|
37
|
-
|
|
38
|
-
{{ if eq $menu_type "link" }}
|
|
39
|
-
<li>
|
|
40
|
-
<a href="{{ .URL }}">{{ .Name }}</a>
|
|
41
|
-
</li>
|
|
42
|
-
{{ else if eq $menu_type "dropdown" }}
|
|
43
|
-
<li class="dropdown">
|
|
44
|
-
<button
|
|
45
|
-
class="dropdown-toggle btn btn-link"
|
|
46
|
-
data-toggle="dropdown"
|
|
47
|
-
aria-haspopup="true"
|
|
48
|
-
aria-expanded="false"
|
|
49
|
-
>
|
|
50
|
-
{{ .Name }}
|
|
51
|
-
</button>
|
|
52
|
-
</li>
|
|
53
|
-
{{ else if eq $menu_type "mega" }}
|
|
54
|
-
<li>
|
|
55
|
-
<button type="button" class="btn btn-link" data-target="{{ $target_menu }}">{{ .Name }}</button>
|
|
56
|
-
</li>
|
|
57
|
-
{{ end }}
|
|
58
|
-
{{ end }}
|
|
59
|
-
</ul>
|
|
60
|
-
</nav>
|
|
@@ -1,130 +0,0 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
Copyright (c) 2025 Eclipse Foundation AISBL
|
|
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
|
-
{{ $logo := .Site.Params.logo | default "https://www.eclipse.org/eclipse.org-common/themes/solstice/public/images/logo/eclipse-foundation-white-orange.svg" }}
|
|
12
|
-
{{ $logo_width := .Site.Params.logo_width | default "150" }}
|
|
13
|
-
{{ $logo_title := .Site.Params.logo_title | default $.Site.Title }}
|
|
14
|
-
|
|
15
|
-
{{ $call_for_action_text := .Site.Params.call_for_action_text }}
|
|
16
|
-
{{ $call_for_action_url := .Site.Params.call_for_action_url }}
|
|
17
|
-
{{ $call_for_action_icon := .Site.Params.call_for_action_icon }}
|
|
18
|
-
{{ $call_for_action_id := .Site.Params.call_for_action_id }}
|
|
19
|
-
|
|
20
|
-
{{ $hide_cfa := .Site.Params.hide_call_for_action | default .Page.Params.hide_call_for_action | default false }}
|
|
21
|
-
|
|
22
|
-
<div class="navigation-bar dark">
|
|
23
|
-
<div class="container">
|
|
24
|
-
<div class="navigation-bar-inner">
|
|
25
|
-
<div class="navigation-bar-left">
|
|
26
|
-
<a class="focus-highlight focus-inverse" href="/">
|
|
27
|
-
<img
|
|
28
|
-
class="navigation-bar-brand"
|
|
29
|
-
src="{{ $logo }}"
|
|
30
|
-
alt="{{ $logo_title }}"
|
|
31
|
-
/>
|
|
32
|
-
</a>
|
|
33
|
-
</div>
|
|
34
|
-
{{ partial "nav.html" . }}
|
|
35
|
-
<div class="navigation-bar-right">
|
|
36
|
-
<!-- Navbar controls -->
|
|
37
|
-
<div class="navigation-bar-controls hidden-xs hidden-sm">
|
|
38
|
-
<ul>
|
|
39
|
-
<li class="dropdown">
|
|
40
|
-
<a
|
|
41
|
-
class="dropdown-toggle link-unstyled focus-highlight"
|
|
42
|
-
tabindex="0"
|
|
43
|
-
id="search-dropdown-toggle"
|
|
44
|
-
data-toggle="dropdown"
|
|
45
|
-
href="#"
|
|
46
|
-
aria-label="Search"
|
|
47
|
-
>
|
|
48
|
-
<i class="fa-solid fa-magnifying-glass" aria-hidden="true"></i>
|
|
49
|
-
</a>
|
|
50
|
-
<form
|
|
51
|
-
class="search-bar dropdown-menu dropdown-menu-right"
|
|
52
|
-
aria-labelledby="search-dropdown-toggle"
|
|
53
|
-
action="https://www.eclipse.org/home/search/"
|
|
54
|
-
method="get"
|
|
55
|
-
>
|
|
56
|
-
<input class="search-bar-input" name="q" placeholder="Search" />
|
|
57
|
-
<button class="btn btn-link" type="submit">
|
|
58
|
-
<i class="fa-solid fa-arrow-right"></i>
|
|
59
|
-
</button>
|
|
60
|
-
</form>
|
|
61
|
-
</li>
|
|
62
|
-
<li class="dropdown">
|
|
63
|
-
<a
|
|
64
|
-
class="dropdown-toggle focus-highlight"
|
|
65
|
-
id="user-menu"
|
|
66
|
-
href="#"
|
|
67
|
-
data-toggle="dropdown"
|
|
68
|
-
aria-haspopup="true"
|
|
69
|
-
aria-expanded="false"
|
|
70
|
-
tabindex="0"
|
|
71
|
-
>
|
|
72
|
-
<i class="fa-regular fa-user" aria-hidden="true"></i>
|
|
73
|
-
</a>
|
|
74
|
-
<ul
|
|
75
|
-
class="dropdown-menu dropdown-menu-right"
|
|
76
|
-
aria-labelledby="user-menu"
|
|
77
|
-
>
|
|
78
|
-
<li>
|
|
79
|
-
<a href="https://accounts.eclipse.org/user">
|
|
80
|
-
<i
|
|
81
|
-
class="fa-solid fa-user margin-right-10"
|
|
82
|
-
aria-hidden="true"
|
|
83
|
-
></i>
|
|
84
|
-
View my account
|
|
85
|
-
</a>
|
|
86
|
-
</li>
|
|
87
|
-
<li>
|
|
88
|
-
<a href="https://accounts.eclipse.org/user/edit">
|
|
89
|
-
<i
|
|
90
|
-
class="fa-solid fa-edit margin-right-10"
|
|
91
|
-
aria-hidden="true"
|
|
92
|
-
></i>
|
|
93
|
-
Edit my account
|
|
94
|
-
</a>
|
|
95
|
-
</li>
|
|
96
|
-
<li>
|
|
97
|
-
<a role="link" class="toolbar-manage-cookies" href="#" tabindex="0">
|
|
98
|
-
<i
|
|
99
|
-
class="fa-solid fa-wrench margin-right-10"
|
|
100
|
-
aria-hidden=""
|
|
101
|
-
></i>
|
|
102
|
-
Manage cookies
|
|
103
|
-
</a>
|
|
104
|
-
</li>
|
|
105
|
-
</ul>
|
|
106
|
-
</li>
|
|
107
|
-
</ul>
|
|
108
|
-
</div>
|
|
109
|
-
<!-- Navbar controls end -->
|
|
110
|
-
{{ if not $hide_cfa }}
|
|
111
|
-
<div class="navigation-bar-ctas hidden-xs hidden-sm">
|
|
112
|
-
<ul>
|
|
113
|
-
<li>
|
|
114
|
-
<a
|
|
115
|
-
class="btn btn-outline-primary"
|
|
116
|
-
{{ with $call_for_action_id -}} id="{{ . }}" {{- end }}
|
|
117
|
-
href="{{ $call_for_action_url }}"
|
|
118
|
-
>
|
|
119
|
-
{{ $call_for_action_text }}
|
|
120
|
-
</a>
|
|
121
|
-
</li>
|
|
122
|
-
</ul>
|
|
123
|
-
</div>
|
|
124
|
-
{{ end }}
|
|
125
|
-
<a class="mobile-menu-toggle visible-xs visible-sm" aria-expanded="false">
|
|
126
|
-
</a>
|
|
127
|
-
</div>
|
|
128
|
-
</div>
|
|
129
|
-
</div>
|
|
130
|
-
</div>
|
|
@@ -1,73 +0,0 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
Copyright (c) 2025 Eclipse Foundation AISBL
|
|
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
|
-
{{ if isset .Site.Menus "sidebar" }}
|
|
12
|
-
{{ $identifiers := slice "home" }}
|
|
13
|
-
|
|
14
|
-
{{ if .Page.Params.sidebar }}
|
|
15
|
-
{{ $identifiers = .Page.Params.sidebar }}
|
|
16
|
-
{{ else if .Page.Section }}
|
|
17
|
-
{{ $identifiers = slice .Page.Section }}
|
|
18
|
-
{{ end }}
|
|
19
|
-
|
|
20
|
-
{{ $menu_sections := where .Site.Menus.sidebar "Identifier" "in" $identifiers}}
|
|
21
|
-
|
|
22
|
-
{{ with $menu_sections }}
|
|
23
|
-
<aside class="sidebar">
|
|
24
|
-
<a
|
|
25
|
-
class="sidebar-toggle sidebar-toggle-open"
|
|
26
|
-
type="button"
|
|
27
|
-
href="#sidebar-open"
|
|
28
|
-
>
|
|
29
|
-
<i class="fa-solid fa-bars" aria-hidden="true"></i>
|
|
30
|
-
</a>
|
|
31
|
-
<a
|
|
32
|
-
class="sidebar-toggle sidebar-toggle-close"
|
|
33
|
-
type="button"
|
|
34
|
-
href="#sidebar-close"
|
|
35
|
-
>
|
|
36
|
-
<i class="fa-solid fa-close" aria-hidden="true"></i>
|
|
37
|
-
</a>
|
|
38
|
-
<nav>
|
|
39
|
-
<ul class="sidebar-menu">
|
|
40
|
-
{{ range $index, $menu := . }}
|
|
41
|
-
<li class="menu-group">
|
|
42
|
-
<!-- bootstrap 3 collapse -->
|
|
43
|
-
<a href="#{{ $menu.Identifier }}" data-toggle="collapse" aria-expanded="{{ if eq $index 0 -}} true {{- else -}} false {{- end}}" class="dropdown-toggle">
|
|
44
|
-
{{ $menu.Name }}
|
|
45
|
-
</a>
|
|
46
|
-
<ul class="collapse {{ if eq $index 0 -}} in {{- end }}" id="{{ $menu.Identifier }}">
|
|
47
|
-
{{ range $menu.Children }}
|
|
48
|
-
{{ if .HasChildren }}
|
|
49
|
-
<li class="menu-subgroup">
|
|
50
|
-
<a href="#{{ .Identifier }}" data-toggle="collapse" aria-expanded="false" class="dropdown-toggle">
|
|
51
|
-
{{ .Name }}
|
|
52
|
-
</a>
|
|
53
|
-
<ul class="collapse" id="{{ .Identifier }}">
|
|
54
|
-
{{ range .Children }}
|
|
55
|
-
<li><a href="{{ .URL }}">{{ .Name }}</a></li>
|
|
56
|
-
{{ end }}
|
|
57
|
-
</ul>
|
|
58
|
-
</li>
|
|
59
|
-
{{ else }}
|
|
60
|
-
<li>
|
|
61
|
-
<a href="{{ .URL }}">{{ .Name }}</a>
|
|
62
|
-
</li>
|
|
63
|
-
{{ end }}
|
|
64
|
-
{{ end }}
|
|
65
|
-
</ul>
|
|
66
|
-
</li>
|
|
67
|
-
{{ end }}
|
|
68
|
-
</ul>
|
|
69
|
-
</nav>
|
|
70
|
-
</aside>
|
|
71
|
-
{{ end }}
|
|
72
|
-
{{ end }}
|
|
73
|
-
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
Copyright (c) 2025 Eclipse Foundation AISBL
|
|
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
|
-
<ul class="social-media-list">
|
|
12
|
-
{{ range $.Site.Params.socials }}
|
|
13
|
-
<li>
|
|
14
|
-
<a href="{{ .url }}" aria-label="{{ .name }}">
|
|
15
|
-
<span class="fa-stack">
|
|
16
|
-
<i class="fa-solid fa-circle fa-stack-2x" aria-hidden="true"></i>
|
|
17
|
-
<i class="{{ .icon }} fa-stack-1x fa-inverse" aria-hidden="true"></i>
|
|
18
|
-
</span>
|
|
19
|
-
</a>
|
|
20
|
-
</li>
|
|
21
|
-
{{ end }}
|
|
22
|
-
</ul>
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
Copyright (c) 2025 Eclipse Foundation AISBL
|
|
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
|
-
<!-- Neptune has no toolbar, so this file is intentionally left blank -->
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
{{/*
|
|
2
|
-
Copyright (c) 2018, 2023 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
|
-
Christopher Guindon <chris.guindon@eclipse-foundation.org>
|
|
9
|
-
Olivier Goulet <olivier.goulet@eclipse-foundation.org>
|
|
10
|
-
|
|
11
|
-
SPDX-License-Identifier: EPL-2.0
|
|
12
|
-
*/}}
|
|
13
|
-
|
|
14
|
-
{{ $breadcrumb_container := "" }}
|
|
15
|
-
|
|
16
|
-
{{ if ne $.Site.Params.layout_style "astro" }}
|
|
17
|
-
{{ $breadcrumb_container = "container" }}
|
|
18
|
-
{{ end }}
|
|
19
|
-
|
|
20
|
-
<div class="default-breadcrumbs hidden-print" id="breadcrumb">
|
|
21
|
-
<div class="{{ $breadcrumb_container }}">
|
|
22
|
-
<div class="row">
|
|
23
|
-
<div class="col-sm-24">
|
|
24
|
-
<ol aria-label="Breadcrumb" class="breadcrumb">
|
|
25
|
-
{{ template "breadcrumbnav" (dict "p1" . "p2" .) }}
|
|
26
|
-
</ol>
|
|
27
|
-
{{ define "breadcrumbnav" }}
|
|
28
|
-
{{ if .p1.Parent }}
|
|
29
|
-
{{ template "breadcrumbnav" (dict "p1" .p1.Parent "p2" .p2 ) }}
|
|
30
|
-
{{ else if not .p1.IsHome }}
|
|
31
|
-
{{ template "breadcrumbnav" (dict "p1" .p1.Site.Home "p2" .p2 ) }}
|
|
32
|
-
{{ end }}
|
|
33
|
-
<li {{ if eq .p1 .p2 }} class="active" aria-current="page"{{ end }}>
|
|
34
|
-
<a href="{{ .p1.Permalink }}">{{ if eq .p1.Params.format_title false }}{{ .p1.Title | safeHTML }}{{ else }}{{ .p1.Title | safeHTML | title }}{{ end }}</a>
|
|
35
|
-
</li>
|
|
36
|
-
{{ end }}
|
|
37
|
-
</div>
|
|
38
|
-
</div>
|
|
39
|
-
</div>
|
|
40
|
-
</div>
|
|
41
|
-
|
|
42
|
-
|
|
@@ -1,26 +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
|
-
<p id="back-to-top">
|
|
15
|
-
<a class="visible-xs" href="#top">{{ i18n "navigation-back-to-top" }}</a>
|
|
16
|
-
</p>
|
|
17
|
-
<footer id="{{- .Params.footer_id | default .Site.Params.footer_id | default "solstice-footer"}}" class="{{- .Params.footer_class | default .Site.Params.footer_class | default ""}}">
|
|
18
|
-
<div class="{{- .Params.footer_container_class | default .Site.Params.footer_container_class | default "container"}}">
|
|
19
|
-
<div class="row">
|
|
20
|
-
{{ partial "footer_links/prefix.html" . }}
|
|
21
|
-
{{ partial "footer_links/links.html" . }}
|
|
22
|
-
{{ partial "footer_links/suffix.html" . }}
|
|
23
|
-
<a href="#" class="scrollup">{{ i18n "navigation-back-to-top" }}</a>
|
|
24
|
-
</div>
|
|
25
|
-
</div>
|
|
26
|
-
</footer>
|
|
@@ -1,21 +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
|
-
{{- partial "google_tag_manager_no_script.html" . }}
|
|
15
|
-
<a class="sr-only" href="#content">{{ i18n "navigation-content-skip" }}</a>
|
|
16
|
-
<header class="header-wrapper{{- with .Params.header_wrapper_class | default .Site.Params.header_wrapper_class }} {{ . }}{{end}}" id="header-wrapper">
|
|
17
|
-
{{ partial "toolbar.html" . }}
|
|
18
|
-
{{ partial "navbar.html" . }}
|
|
19
|
-
{{ partial "jumbotron.html" . }}
|
|
20
|
-
</header>
|
|
21
|
-
|