eclipsefdn-hugo-solstice-theme 0.1.9 → 0.1.10
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
CHANGED
|
@@ -189,16 +189,10 @@
|
|
|
189
189
|
weight = 1
|
|
190
190
|
parent = "supporters-sponsorship"
|
|
191
191
|
|
|
192
|
-
[[menus.astro]]
|
|
193
|
-
name = "Corporate Sponsorship"
|
|
194
|
-
url = "https://www.eclipse.org/org/corporate-sponsors/"
|
|
195
|
-
weight = 2
|
|
196
|
-
parent = "supporters-sponsorship"
|
|
197
|
-
|
|
198
192
|
[[menus.astro]]
|
|
199
193
|
name = "Sponsor a Collaboration"
|
|
200
194
|
url = "https://www.eclipse.org/sponsor/collaboration/"
|
|
201
|
-
weight =
|
|
195
|
+
weight = 2
|
|
202
196
|
parent = "supporters-sponsorship"
|
|
203
197
|
|
|
204
198
|
[[menus.astro]]
|
|
@@ -26,6 +26,7 @@ items:
|
|
|
26
26
|
-
|
|
27
27
|
name: facebook_url
|
|
28
28
|
description: URL to the Facebook page for the site. If there is no value set, will default to Eclispe Foundation page.
|
|
29
|
+
deprecated: "0.1.7"
|
|
29
30
|
values:
|
|
30
31
|
- Absolute link to Facebook profile
|
|
31
32
|
-
|
|
@@ -102,11 +103,13 @@ items:
|
|
|
102
103
|
-
|
|
103
104
|
name: linkedin_url
|
|
104
105
|
description: URL to the linkedin page for the site. If there is no value set, will default to Eclispe Foundation page.
|
|
106
|
+
deprecated: "0.1.7"
|
|
105
107
|
values:
|
|
106
108
|
- Absolute link to linkedin profile
|
|
107
109
|
-
|
|
108
110
|
name: bluesky_url
|
|
109
111
|
description: URL to the Bluesky page for the site. If there is no value set, will default to Eclispe Foundation page.
|
|
112
|
+
deprecated: "0.1.7"
|
|
110
113
|
values:
|
|
111
114
|
- Absolute link to Bluesky profile
|
|
112
115
|
-
|
|
@@ -137,11 +140,13 @@ items:
|
|
|
137
140
|
-
|
|
138
141
|
name: twitter_url
|
|
139
142
|
description: URL to the Twitter page for the site. If there is no value set, will default to Eclispe Foundation page.
|
|
143
|
+
deprecated: "0.1.7"
|
|
140
144
|
values:
|
|
141
145
|
- Absolute link to Twitter profile
|
|
142
146
|
-
|
|
143
147
|
name: youtube_url
|
|
144
148
|
description: URL to the YouTube page for the site. If there is no value set, will default to Eclispe Foundation page.
|
|
149
|
+
deprecated: "0.1.7"
|
|
145
150
|
values:
|
|
146
151
|
- Absolute link to YouTube profile
|
|
147
152
|
-
|
|
@@ -159,3 +164,13 @@ items:
|
|
|
159
164
|
description: Optional custom_jumbotron_class that will be used for custom_jumbotron.
|
|
160
165
|
values:
|
|
161
166
|
- Any string value
|
|
167
|
+
- name: socials
|
|
168
|
+
values:
|
|
169
|
+
- "Array of objects with the following properties: name (string), icon (string, Font Awesome 6 icon classes), url (string)"
|
|
170
|
+
example: |
|
|
171
|
+
<pre>
|
|
172
|
+
[[Params.socials]]
|
|
173
|
+
name = "Bluesky"
|
|
174
|
+
icon = "fa-brands fa-bluesky"
|
|
175
|
+
url = "https://bsky.app/profile/eclipsefdn.bsky.social"
|
|
176
|
+
</pre>
|
|
@@ -26,6 +26,9 @@
|
|
|
26
26
|
<td>{{ .name }}</td>
|
|
27
27
|
<td>
|
|
28
28
|
<p>{{ .description | safeHTML }}</p>
|
|
29
|
+
{{ if .deprecated }}
|
|
30
|
+
<p class="red">Deprecated in v{{ .deprecated }}</p>
|
|
31
|
+
{{ end }}
|
|
29
32
|
{{ if isset .values 0 }}
|
|
30
33
|
<p><em>Accepted values:</em></p>
|
|
31
34
|
<ul>
|
|
@@ -37,7 +40,7 @@
|
|
|
37
40
|
|
|
38
41
|
{{ if and (trim .example " " | ne "") (isset . "example") }}
|
|
39
42
|
<p>
|
|
40
|
-
<em>Example:</em> {{ .example }}
|
|
43
|
+
<em>Example:</em> {{ .example | safeHTML }}
|
|
41
44
|
</p>
|
|
42
45
|
{{ end }}
|
|
43
46
|
|
|
@@ -51,4 +54,4 @@
|
|
|
51
54
|
{{ end }}
|
|
52
55
|
</tbody>
|
|
53
56
|
</table>
|
|
54
|
-
</div>
|
|
57
|
+
</div>
|