forked from workflowscommunity/workflowscommunity.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworking_groups.html
62 lines (57 loc) · 2.05 KB
/
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
---
layout: default
---
{% assign status_color = "color-2" %}
{% if page.status == "Establishing" %}
{% assign status_color = "#D4D62D" %}
{% elsif page.status == "Establishing" %}
{% assign status_color = "color-6" %}
{% endif %}
<article class="post">
<header>
<div class="title">
<h2>{{page.title}}</h2>
<a href="#members" class="label"><i class="fas fa-users"></i> {{page.members| size}} members</a>
<span class="status">
<i class="fas fa-circle-notch" style="color: {{status_color}}"></i>
{{ page.status }}
</span>
{% if page.join %}
<a href="{{ page.join }}" target="_blank" class="corner-button"
style="background-color: steelblue">Join <i class="fas fa-user-plus"
style="font-size: 0.8em"></i></a>
{% endif %}
</div>
</header>
<main class="wg-content">
{{content | markdownify}}
</main>
<br /><br />
</article>
<a id="members"></a>
<article class="post">
<header>
<div class="sub title">
<h3>Members</h3>
<p>The {{page.title}} working group is composed of {{page.members | size}} members.</p>
{% if page.join %}
<a href="{{ page.join }}" target="_blank" class="btn btn-primary" style="margin-top: -2em; margin-bottom: 0;">Join Working Group <i class="fas fa-user-plus"
style="font-size: 0.8em"></i></a>
{% endif %}
</div>
</header>
<div class="row">
<ul class="group-members">
{% for member in page.members %}
<li>
{% if member.link %}
<a href="{{member.link}}" target="_blank">{{member.name}}</a>
{% else %}
{{member.name}}
{% endif %}
{% if member.role %}<strong> {{member.role}}</strong>{% endif %}
</li>
{% endfor %}
</ul>
</div>
</article>