forked from workflowscommunity/workflowscommunity.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
300 lines (287 loc) · 13.5 KB
/
index.html
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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
---
layout: default
permalink: /
---
{% capture nowunix %}{{'now' | date: '%Y-%m-%d' | date: '%s'}}{% endcapture %}
{% assign total_systems = site.systems | size %}
{% assign total_members = site.data.members | size %}
{% assign total_frameworks = site.data.research_frameworks | size %}
{% assign total_wci_wg = site.working_groups | where:"layout","working_groups" | size %}
{% assign total_ext_wg = site.data.working_groups | size %}
{% assign total_wg = total_wci_wg | plus: total_ext_wg %}
<div class="row" style="margin-left: 0.075em; margin-right: 0.075em; margin-bottom: 3em">
<!-- Latest Story -->
{% assign story = site.stories | sort: "date" | reverse %}
{% for s in story %}
<div class="col-sm-12 col-md-9">
<div class="mini-box story-main">
<header>
<div class="top-button" style="border-bottom: 1px solid #ccc;">
<h3 style="margin: 0; color: #fff">Latest Story</h3>
<p style="margin: 0; line-height: 1.5em; font-size: 0.6em">
Perspectives on workflows-related topics
</p>
</div>
<a href="/stories" class="bottom-button">All Stories</a>
</header>
<div class="story-image">
<img src="{{s.image}}" />
</div>
<div class="row" style="margin-top: 13em; padding: 0.5em 1em">
<div class="col-sm-12 col-md-12" style="padding: 0 0.5em">
<a href="{{s.url}}" style="text-decoration: none;">
<h1>{{s.title}}</h1>
<p class="story-excerpt">{{s.excerpt| strip_html | strip_newlines | truncate: 450}}</p>
</a>
<span class="author">
{{ s.date | date: "%b %d, %Y" }}<br />
by {{s.author}}, {{s.author_institution}}
</span>
</div>
</div>
</div>
</div>
{% endfor %}
<div class="col-sm-1"> </div>
<!-- Stats -->
<div class="col-sm-12 col-md-2">
<div class="mini-box">
<div class="ostats">
<a class="nsystems" href="/systems">
<strong class="timer" data-from="1" data-to="{{ total_systems }}"></strong><br />
workflow systems
</a>
<a class="nmembers" href="/members">
<strong class="timer" data-from="1" data-to="{{ total_members }}"></strong><br />
members<br />
<span class="light-gray"><i>and growing</i></span>
</a>
<a class="nframeworks" href="/frameworks">
<strong class="timer" data-from="1" data-to="{{ total_frameworks }}"></strong><br />
research frameworks
</a>
<a class="nwg" href="/groups">
<strong class="timer" data-from="1" data-to="{{ total_wg }}"></strong><br />
working groups
</a>
</div>
</div>
</div>
</div>
<!-- Workflow Systems -->
<article class="post">
<header>
<div class="top-button" style="background-color: #e27d60;">
<h3 style="margin: 0; color: #fff">Workflow Systems</h3>
<p style="margin: 0; line-height: 1.5em; font-size: 0.6em">
Last Updated Open Source Workflow Systems
</p>
</div>
<a href="/systems" class="bottom-button" style="background-color: #FA8B6C;">All Systems</a>
</header>
<div class="systems">
<div class="systems-list">
{% assign systems_wci = site.systems | where: "wci_metadata", "true" | sort: "date_sort" | reverse %}
{% assign systems_wci_size = systems_wci | size %}
{% assign systems = site.systems | where: "wci_metadata", "false" | sort: "date_sort" | reverse %}
{% assign systems_limit = 10 | minus: systems_wci_size %}
{% for system in systems_wci limit: 10 %}
<a href="{{system.url}}" class="system"
style="min-width: 15em; max-height: 6em; min-height: 6em; box-shadow: none; flex: 0 0 auto; position: relative">
{% if system.avatar %}
<div class="system-avatar">
<img src="{{system.avatar}}" alt="{{system.repository}}" />
</div>
{% endif %}
<div class="system-content">
<strong>{{system.title}}</strong>
<div class="list-stats">
<i class="fas fa-code"></i> {{system.language}}</span><br />
{% if system.release_name != "" %}
<i class="fas fa-box-open"></i> {{system.release_name}}</span><br />
{% endif %}
<i class="far fa-clock"></i> {{system.last_update}}
</div>
</div>
{% if system.wci_metadata %}
<div style="position: absolute; bottom: 0; right: 1em; font-size: 0.8em">
<img src="/favicon.ico" style="max-width: 1.5em; vertical-align: middle" />
<span class="light-gray">WCI metadata</span>
</div>
{% endif %}
</a>
{% endfor %}
{% for system in systems limit: systems_limit %}
<a href="{{system.url}}" class="system"
style="min-width: 15em; max-height: 6em; min-height: 6em; box-shadow: none; flex: 0 0 auto; position: relative">
{% if system.avatar %}
<div class="system-avatar">
<img src="{{system.avatar}}" alt="{{system.repository}}" />
</div>
{% endif %}
<div class="system-content">
<strong>{{system.title}}</strong>
<div class="list-stats">
<i class="fas fa-code"></i> {{system.language}}</span><br />
{% if system.release_name != "" %}
<i class="fas fa-box-open"></i> {{system.release_name}}</span><br />
{% endif %}
<i class="far fa-clock"></i> {{system.last_update}}
</div>
</div>
{% if system.wci_metadata %}
<div style="position: absolute; bottom: 0; right: 1em; font-size: 0.8em">
<img src="/favicon.ico" style="max-width: 1.5em; vertical-align: middle" />
<span class="light-gray">WCI metadata</span>
</div>
{% endif %}
</a>
{% endfor %}
<a href="/systems" class="system"
style="border: 1px solid #ddd; border-radius: 0.5em; box-shadow: none; flex: 0 0 auto; margin-left: 1em">
<div style="text-align: center; min-width: 6em; min-height: 3.5em; color: #aaa">
<i class="fas fa-cogs" style="font-size: 1.5em"></i><br />
See all Systems
</div>
</a>
</div>
</div>
</article>
<div class="row" style="margin-left: 0.075em; margin-right: 0.075em; margin-bottom: 3em">
<!-- Events -->
<div class="col-sm-12 col-md-6">
<div class="mini-box events">
<header>
<div class="top-button" style="border-bottom: 1px solid #ccc;">
<h3 style="margin: 0; color: #fff">Events</h3>
<p style="margin: 0; line-height: 1.5em; font-size: 0.6em">Upcoming Community Events</p>
</div>
<a href="/events" class="bottom-button">All Events</a>
</header>
<div class="row" style="margin-top: 2.5em">
{% assign events = site.data.events | sort: 'start_date'%}
{% assign count_events = 0 %}
{% for event in events %}
{% capture eventtime %}{{event.end_date | date: '%s'}}{% endcapture %}
{% if eventtime >= nowunix and count_events < 15 %} <div class="col-sm-12 col-md-12"
style="padding: 0 0.5em">
<a href="{{event.url}}" class="event" target="_blank">
<div class="event-date" style="min-width: 5em; max-width: 5em; max-height: 10em;">
<span class="header" style="font-size: 1em">{{event.start_date | date: "%b %d"
}}</span><br />
<span class="subheader" style="font-size: 0.8em">{{event.start_date | date: "%Y" }}</span>
</div>
<div class="event-content" style="line-height: 1em;">
<span class="
{% if event.type == 'Conference' %}
color-7
{% elsif event.type == 'Workshop' %}
color-6
{% endif %}
">{{event.series}}</span><br />
<span style="font-size: 0.8em"><i class="fas fa-map-marker"
style="font-size: 0.8em; color: #999"></i> {{event.location}}</span><br />
{% if event.deadlines %}
{% for d in event.deadlines %}
<span class="deadlines">{{d.name}}: <strong>{{d.date | date: "%b %d,
%Y"}}</strong></span><br />
{% endfor %}
{% endif %}
</div>
</a>
</div>
{% assign count_events = count_events | plus: 1 %}
{% endif %}
{% endfor %}
<div class="col-sm-12 col-md-12" style="padding: 0 0.5em">
<a href="/events" style="text-decoration: none">
<div class="see-all-button" style="color: #4CA8A9; border: 1px solid #4CA8A9">
See all Events
</div>
</a>
</div>
</div>
</div>
</div>
<div class="col-sm-1"> </div>
<!-- Jobs -->
{% assign jobs = site.jobs | sort: "application_deadline" %}
{% assign num_jobs = 0 %}
{% for job in jobs %}
{% capture eventtime %}{{job.application_deadline | date: '%s'}}{% endcapture %}
{% if eventtime >= nowunix %}
{% assign num_jobs = num_jobs | plus: 1 %}
{% endif %}
{% endfor %}
<div class="col-sm-12 col-md-5">
<div class="mini-box jobs">
<header>
<div class="top-button" style="background-color: steelblue;">
<h3 style="margin: 0; color: #fff">Jobs</h3>
<p style="margin: 0; line-height: 1.5em; font-size: 0.6em">
<strong style="color: #fff">{{ num_jobs }}</strong> Open Positions from the Community
</p>
</div>
<a href="/jobs" class="bottom-button" style="background-color: #659AD4;">All Jobs</a>
</header>
<div class="row" style="margin-top: 2.5em">
{% assign count_jobs = 0 %}
{% for job in jobs %}
{% capture eventtime %}{{job.application_deadline | date: '%s'}}{% endcapture %}
{% if eventtime >= nowunix and count_jobs < 10 %} <div class="col-sm-12 col-md-12"
style="padding: 0 0.5em; vertical-align: top;">
<a href="{{ job.url }}" class="job-item">
<div style="width: 100%">
<span style="color: steelblue">{{ job.title }}</span><br />
<span style="font-size: 0.9em">{{ job.organization }}</span><br />
<span class="light-gray">
<!-- <i class="fas fa-clock"></i> {{ job.application_deadline | date: "%b %d, %Y" }}
| -->
<i class="fas fa-map-marker"></i> {{ job.location }}
|
<i class="fas fa-briefcase"></i> {{ job.employment_type }}
</span>
</div>
<div>
<img src="{{ job.organization_logo }}" alt="{{ job.title }}" />
</div>
</a>
</div>
{% assign count_jobs = count_jobs | plus: 1 %}
{% endif %}
{% endfor %}
<div class="col-sm-12 col-md-12" style="padding: 0 0.5em">
<a href="/jobs" style="text-decoration: none">
<div class="see-all-button">
See all Jobs
</div>
</a>
</div>
</div>
</div>
</div>
</div>
<article class="post">
<header>
<div class="top-button" style="background-color: #adadad;">
<h3 style="margin: 0; color: #fff">Founding Members</h3>
<p style="margin: 0; line-height: 1.5em;">
Since 2021
</p>
</div>
</header>
<div class="row" style="margin-top: 5em">
{% assign institutions = site.data.institutions | where: "founding",true %}
{% for institution in institutions %}
<div class="col-sm-6 col-md-3 institution">
<a href="{{institution.link}}" target="_blank">
<img src="/images/institutions/{{institution.image}}" alt="{{institution.name}}" />
</a>
</div>
{% endfor %}
</div>
<br />
</article>
<script type="text/javascript">
$('.timer').countTo();
</script>