forked from workflowscommunity/workflowscommunity.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage_working_groups.html
65 lines (62 loc) · 2.54 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
---
layout: default
title: Working Groups
permalink: /groups
---
<article class="post">
<header>
<div class="title">
<h2>{{page.title}}</h2>
<p>
Collection of working group efforts related to workflows research, development, and application
</p>
</div>
</header>
<div class="row">
<!-- WCI WGs -->
{% assign groups = site.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-sm-12 col-md-12 group">
<a href="{{group.url}}" class="framework-content" style="margin-left: 0.5em; text-decoration: none;">
<img src="/favicon.ico" style="width: 25px; vertical-align: middle;" /> <strong>{{group.title}}</strong>
<p class="description">{{group.description}}</p>
<div>
<span class="badge"><i class="fas fa-users"></i> {{group.members | size}} Members</span> |
<span class="badge">
<i class="fas fa-circle-notch" style="color: {{status_color}}"></i>
{{group.status}}</span>
</div>
</a>
</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-sm-12 col-md-12 group">
<a href="{{group.link}}" class="framework-content" style="margin-left: 0.5em; text-decoration: none;" target="_blank">
<strong>{{group.name}}</strong>
<p class="description">{{group.description}}</p>
<div>
<span class="badge">
<i class="fas fa-circle-notch" style="color: {{status_color}}"></i>
{{group.status}}</span>
<span class="light-gray">| External</span>
</div>
</a>
</div>
{% endfor %}
</div>
<br />
</article>