eclipsefdn-hugo-solstice-theme 0.2.3 → 0.2.5
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 +19 -1
- package/layouts/partials/astro/nav.html +4 -1
- package/package.json +3 -3
package/config.toml
CHANGED
|
@@ -337,6 +337,15 @@
|
|
|
337
337
|
weight = 4
|
|
338
338
|
parent = "whats-happening"
|
|
339
339
|
|
|
340
|
+
[[menu.neptune]]
|
|
341
|
+
name = "Explore OSS global voices"
|
|
342
|
+
url = "https://opensourceglobalvoices.org/"
|
|
343
|
+
weight = 5
|
|
344
|
+
parent = "whats-happening"
|
|
345
|
+
[menu.neptune.params]
|
|
346
|
+
target = "_blank"
|
|
347
|
+
external = true
|
|
348
|
+
|
|
340
349
|
[[menu.neptune]]
|
|
341
350
|
name = "Events"
|
|
342
351
|
weight = 2
|
|
@@ -446,21 +455,30 @@
|
|
|
446
455
|
|
|
447
456
|
[[menu.neptune]]
|
|
448
457
|
name = "Adoptium"
|
|
449
|
-
url = "https://adoptium.net/"
|
|
458
|
+
url = "https://adoptium.net/marketplace"
|
|
450
459
|
weight = 1
|
|
451
460
|
parent = "marketplaces"
|
|
461
|
+
[menu.neptune.params]
|
|
462
|
+
target = "_blank"
|
|
463
|
+
external = true
|
|
452
464
|
|
|
453
465
|
[[menu.neptune]]
|
|
454
466
|
name = "Eclipse IDE"
|
|
455
467
|
url = "https://marketplace.eclipse.org/"
|
|
456
468
|
weight = 2
|
|
457
469
|
parent = "marketplaces"
|
|
470
|
+
[menu.neptune.params]
|
|
471
|
+
target = "_blank"
|
|
472
|
+
external = true
|
|
458
473
|
|
|
459
474
|
[[menu.neptune]]
|
|
460
475
|
name = "Open VSX"
|
|
461
476
|
url = "https://open-vsx.org/"
|
|
462
477
|
weight = 3
|
|
463
478
|
parent = "marketplaces"
|
|
479
|
+
[menu.neptune.params]
|
|
480
|
+
target = "_blank"
|
|
481
|
+
external = true
|
|
464
482
|
|
|
465
483
|
[[menu.neptune]]
|
|
466
484
|
name = "About us"
|
|
@@ -50,7 +50,10 @@
|
|
|
50
50
|
<ul class="dropdown-menu" aria-labelledby="{{ $menu_id }}">
|
|
51
51
|
{{ range .Children }}
|
|
52
52
|
<li>
|
|
53
|
-
<a class="link-unstyled" href="{{ .URL }}"
|
|
53
|
+
<a class="link-unstyled" href="{{ .URL }}" {{ with .Params.target -}} target="{{ . | safeHTMLAttr }}" {{- end }}>
|
|
54
|
+
{{ .Name }}
|
|
55
|
+
{{ with .Params.external }}<i class="external-icon fa-solid fa-arrow-up-right-from-square" aria-hidden="true"></i>{{ end }}
|
|
56
|
+
</a>
|
|
54
57
|
</li>
|
|
55
58
|
{{ end }}
|
|
56
59
|
</ul>
|
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.2.
|
|
7
|
+
"version": "0.2.5",
|
|
8
8
|
"bugs": {
|
|
9
9
|
"url": "https://gitlab.eclipse.org/eclipsefdn/it/webdev/hugo-solstice-theme/-/issues"
|
|
10
10
|
},
|
|
@@ -16,13 +16,13 @@
|
|
|
16
16
|
"dev": "NODE_ENV=development webpack --progress --config=node_modules/laravel-mix/setup/webpack.config.js",
|
|
17
17
|
"watch": "NODE_ENV=development webpack --watch --progress --config=node_modules/laravel-mix/setup/webpack.config.js",
|
|
18
18
|
"hot": "NODE_ENV=development webpack-dev-server --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
|
|
19
|
-
"production": "
|
|
19
|
+
"production": "NODE_ENV=production webpack --progress --config=node_modules/laravel-mix/setup/webpack.config.js",
|
|
20
20
|
"fetch_project": "node bin/projects/index.js -l exampleSite/data",
|
|
21
21
|
"build": "npm run production && npm run fetch_project"
|
|
22
22
|
},
|
|
23
23
|
"readmeFilename": "README.md",
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"eclipsefdn-solstice-assets": "0.2.
|
|
25
|
+
"eclipsefdn-solstice-assets": "0.2.4",
|
|
26
26
|
"json2yaml": "^1.1.0",
|
|
27
27
|
"toml": "^3.0.0"
|
|
28
28
|
},
|