-
Notifications
You must be signed in to change notification settings - Fork 36
/
page_working_groups.html
67 lines (64 loc) · 2.49 KB
/
page_working_groups.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
---
layout: page
title: Working Groups
permalink: /groups
---
<div class="row justify-content-center mb-4 pb-5">
<div class="col-md-8 text-center heading-section ftco-animate">
<p>
Collection of working group and task forces efforts related to workflows research, development, and
application
</p>
</div>
</div>
<div class="row">
<!-- WCI Groups -->
{% assign groups = site.working_groups | where:"layout","working_groups" | sort: "name" %}
{% for group in groups %}
{% assign status_color = "color-2" %}
{% if group.status == "Establishing" %}
{% assign status_color = "#D4D62D" %}
{% elsif group.status == "Establishing" %}
{% assign status_color = "color-6" %}
{% endif %}
<div class="col-md-6 ftco-animate">
<div class="blog-entry" style="min-height: 20em;">
<div class="text p-4 d-block">
<h3 class="heading"><a href="{{group.url}}"><img src="/favicon.ico"
style="width: 30px; vertical-align: middle;" /> {{group.title}}</a></h3>
<div class="meta mb-3">
{{ group.description }}
</div>
<p class="position" style="font-size: 0.9em">
<i class="fas fa-users"></i> {{group.members | size}} Members<br />
<i class="fas fa-circle-notch" style="color: {{status_color}}"></i> {{group.status}}
</p>
</div>
</div>
</div>
{% endfor %}
<!-- External WGs-->
{% assign groups = site.data.working_groups | sort: "name" %}
{% for group in groups %}
{% assign status_color = "#8CCA60" %}
{% if group.status == "Establishing" %}
{% assign status_color = "#D4D62D" %}
{% elsif group.status == "Establishing" %}
{% assign status_color = "color-6" %}
{% endif %}
<div class="col-md-6 ftco-animate">
<div class="blog-entry" style="min-height: 20em;">
<div class="text p-4 d-block">
<h3 class="heading"><a href="{{group.link}}" target="_blank">{{group.name}}</a></h3>
<div class="meta mb-3">
{{ group.description }}
</div>
<p class="position" style="font-size: 0.9em">
<i class="fas fa-circle-notch" style="color: {{status_color}}"></i> {{group.status}}
(External)
</p>
</div>
</div>
</div>
{% endfor %}
</div>