-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresources.html
More file actions
214 lines (200 loc) · 10 KB
/
Copy pathresources.html
File metadata and controls
214 lines (200 loc) · 10 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
---
layout: default
title: Resources
description: >-
Curated Science Gateways, HPC, cloud, programming, web development, data
science, UX, and community resources for FacultyHack@Gateways 2026
participants.
---
<section class="mentors" aria-labelledby="resources-heading">
<div class="wrapper">
<div class="page-hero__top">
{% include site-logo.html %}
<div>
<h1 id="resources-heading">Resources</h1>
<p>
A curated set of external resources for FacultyHack@Gateways 2026
participants, spanning Science Gateways, high performance
computing, cloud platforms, programming, web development, data
science, UX design, and community organizations.
</p>
</div>
</div>
{% assign session_materials = "" | split: "" %}
{% for session in site.data.schedule.virtual_sessions %}
{% assign session_slug = session.date | slugify %}
{% assign session_dir = "/assets/files/schedule/" | append: session_slug | append: "/" %}
{% assign has_session_files = false %}
{% for file in site.static_files %}
{% if file.path contains session_dir %}
{% assign has_session_files = true %}
{% endif %}
{% endfor %}
{% if session.resources or has_session_files %}
{% assign session_materials = session_materials | push: session %}
{% endif %}
{% endfor %}
<div class="resource-toolbar">
<div class="resource-toolbar__field">
<label for="resource-search">Search resources</label>
<input
type="search"
id="resource-search"
name="q"
placeholder="e.g. Jupyter, HPC, GitHub…"
autocomplete="off"
>
</div>
<div class="resource-toolbar__field">
<label for="resource-jump">Jump to category</label>
<select id="resource-jump">
<option value="">Choose a category…</option>
{% if session_materials.size > 0 %}
<option value="resources-session-materials">Session Materials</option>
{% endif %}
<option value="resources-event-branding">Event Branding</option>
{% for group in site.data.resources %}
<option value="resources-{{ group.category | slugify }}">{{ group.category }}</option>
{% endfor %}
</select>
</div>
<p id="resource-count" class="resource-toolbar__status" aria-live="polite"></p>
</div>
{% if session_materials.size > 0 %}
<section class="resource-category" aria-labelledby="resources-session-materials">
<h2 id="resources-session-materials">Session Materials</h2>
<p>Links and files shared for specific virtual training sessions — see the <a href="{{ '/schedule/' | relative_url }}">Schedule page</a> for full session details.</p>
{% for session in session_materials %}
<h3>{{ session.date }}</h3>
{% assign session_slug = session.date | slugify %}
{% assign session_dir = "/assets/files/schedule/" | append: session_slug | append: "/" %}
{% assign session_files = "" | split: "" %}
{% for file in site.static_files %}
{% if file.path contains session_dir %}
{% assign session_files = session_files | push: file %}
{% endif %}
{% endfor %}
{% assign session_files = session_files | sort: "name" %}
<ul class="resource-list">
{% for resource in session.resources %}
{% include resource-item.html resource=resource default_icon="solid:link" %}
{% endfor %}
{% for file in session_files %}
{% include session-file-item.html file=file %}
{% endfor %}
</ul>
{% endfor %}
</section>
{% endif %}
<section class="resource-category branding-section" aria-labelledby="resources-event-branding">
<h2 id="resources-event-branding">Event Branding</h2>
<p>Official FacultyHack@Gateways 2026 brand assets for presentations, posters, and project materials.</p>
<details class="branding-dropdown">
<summary>View & download logo assets</summary>
<div class="branding-dropdown__body">
<div class="branding-logo-grid">
<div class="branding-logo-card">
<div class="branding-logo-preview">
<img src="{{ '/assets/images/branding/FacultyHack26_logo.png' | relative_url }}" alt="">
</div>
<div class="branding-logo-info">
<span class="branding-logo-name">Logo Mark</span>
<div class="branding-logo-downloads">
<a href="{{ '/assets/images/branding/FacultyHack26_logo.png' | relative_url }}" download class="branding-download-btn"><i class="fa-solid fa-image" aria-hidden="true"></i> PNG</a>
<a href="{{ '/assets/images/branding/FacultyHack26_logo.svg' | relative_url }}" download class="branding-download-btn"><i class="fa-solid fa-file-code" aria-hidden="true"></i> SVG</a>
</div>
</div>
</div>
<div class="branding-logo-card">
<div class="branding-logo-preview">
<img src="{{ '/assets/images/branding/FacultyhHack26_text.png' | relative_url }}" alt="">
</div>
<div class="branding-logo-info">
<span class="branding-logo-name">Wordmark</span>
<div class="branding-logo-downloads">
<a href="{{ '/assets/images/branding/FacultyhHack26_text.png' | relative_url }}" download class="branding-download-btn"><i class="fa-solid fa-image" aria-hidden="true"></i> PNG</a>
<a href="{{ '/assets/images/branding/FacultyhHack26_text.svg' | relative_url }}" download class="branding-download-btn"><i class="fa-solid fa-file-code" aria-hidden="true"></i> SVG</a>
</div>
</div>
</div>
<div class="branding-logo-card">
<div class="branding-logo-preview">
<img src="{{ '/assets/images/branding/FacultyHack26_logo_w_text.jpg' | relative_url }}" alt="">
</div>
<div class="branding-logo-info">
<span class="branding-logo-name">Logo + Wordmark</span>
<div class="branding-logo-downloads">
<a href="{{ '/assets/images/branding/FacultyHack26_logo_w_text.jpg' | relative_url }}" download class="branding-download-btn"><i class="fa-solid fa-image" aria-hidden="true"></i> JPG</a>
<a href="{{ '/assets/images/branding/FacultyHack26_logo_w_text.svg' | relative_url }}" download class="branding-download-btn"><i class="fa-solid fa-file-code" aria-hidden="true"></i> SVG</a>
</div>
</div>
</div>
<div class="branding-logo-card">
<div class="branding-logo-preview branding-logo-preview--favicon">
<img src="{{ '/assets/images/branding/favicon.png' | relative_url }}" alt="">
</div>
<div class="branding-logo-info">
<span class="branding-logo-name">Favicon</span>
<div class="branding-logo-downloads">
<a href="{{ '/assets/images/branding/favicon.png' | relative_url }}" download class="branding-download-btn"><i class="fa-solid fa-image" aria-hidden="true"></i> PNG</a>
<a href="{{ '/favicon.ico' | relative_url }}" download class="branding-download-btn"><i class="fa-solid fa-image" aria-hidden="true"></i> ICO</a>
</div>
</div>
</div>
</div>
<h3 class="branding-colors-heading">Brand Colors</h3>
<div class="branding-color-grid">
<div class="branding-color-swatch" style="--swatch-color: #FAFAF7;">
<div class="branding-color-block"></div>
<div class="branding-color-meta">
<span class="branding-color-name">Soft Ivory</span>
<span class="branding-color-hex">#FAFAF7</span>
</div>
</div>
<div class="branding-color-swatch" style="--swatch-color: #6B4A2A;">
<div class="branding-color-block"></div>
<div class="branding-color-meta">
<span class="branding-color-name">Root Brown</span>
<span class="branding-color-hex">#6B4A2A</span>
</div>
</div>
<div class="branding-color-swatch" style="--swatch-color: #55661A;">
<div class="branding-color-block"></div>
<div class="branding-color-meta">
<span class="branding-color-name">Forest Olive</span>
<span class="branding-color-hex">#55661A</span>
</div>
</div>
<div class="branding-color-swatch" style="--swatch-color: #876237;">
<div class="branding-color-block"></div>
<div class="branding-color-meta">
<span class="branding-color-name">Warm Brown/Gold</span>
<span class="branding-color-hex">#876237</span>
</div>
</div>
<div class="branding-color-swatch" style="--swatch-color: #6E7D1F;">
<div class="branding-color-block"></div>
<div class="branding-color-meta">
<span class="branding-color-name">Olive Green</span>
<span class="branding-color-hex">#6E7D1F</span>
</div>
</div>
</div>
</div>
</details>
</section>
{% for group in site.data.resources %}
<section class="resource-category" aria-labelledby="resources-{{ group.category | slugify }}">
<h2 id="resources-{{ group.category | slugify }}">{{ group.category }}</h2>
<ul class="resource-list">
{% for resource in group.resources %}
{% include resource-item.html resource=resource default_icon=group.icon %}
{% endfor %}
</ul>
</section>
{% endfor %}
</div>
</section>
{% include share-menu.html %}
<script src="{{ '/assets/js/resources.js' | relative_url }}" defer></script>
<script src="{{ '/assets/js/share-menu.js' | relative_url }}" defer></script>