-
Notifications
You must be signed in to change notification settings - Fork 1
/
working_groups.html
91 lines (81 loc) · 3.69 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
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
---
layout: page
title: CI CoE Pilot - Working Groups
permalink: /working_groups/
---
<section id="intro">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12">
<div class="section-title">
<h2>Working Groups</h2>
</div>
</div>
{% if site.data.working_groups.size > 0 %}
{% for n in site.data.working_groups %}
<div class="col-md-12 col-sm-12">
<div class="wg">
{% if n.active == false %}
<div class="inactive"> Inactive </div>
{% endif %}
<div class="wg-icon">
<i class="icon ion-{{ n.icon }}"></i>
</div>
<h4>{{ n.title }}</h4>
<p>{{ n.description }}</p>
<p><b>Related materials:</b></p>
<p>
<ul>
<!-- Presentations -->
{% for p in site.data.presentations %}
{% if p.working_group == n.title %}
<li>Presentation: <b><a href="{{ site.baseurl }}/materials/presentations">{{ p.title }}</a></b></li>
{% endif %}
{% endfor %}
<!-- Videos -->
{% for v in site.data.videos %}
{% if v.working_group == n.title %}
<li>Video: <b><a href="{{ site.baseurl }}/materials/videos">{{ v.title }}</a></b></li>
{% endif %}
{% endfor %}
<!-- Deployments and Software -->
{% for s in site.data.deployments_software %}
{% if s.working_group == n.title %}
<li>Deployments and Software: <b><a href="{{ site.baseurl }}/materials/deployments_software">{{ s.title }}</a></b></li>
{% endif %}
{% endfor %}
<!-- Templates -->
{% for t in site.data.templates %}
{% if t.working_group == n.title %}
<li>Template: <b><a href="{{ site.baseurl }}/materials/templates">{{ t.title }}</a></b></li>
{% endif %}
{% endfor %}
<!-- Community Egnagements -->
{% for t in site.data.community_engagements %}
{% if t.working_group == n.title %}
<li>Community Engagement: <b><a href="{{ site.baseurl }}/materials/community_engagements">{{ t.title }}</a></b></li>
{% endif %}
{% endfor %}
<!-- Publications -->
{% for t in site.data.publications %}
{% if t.working_group == n.title %}
<li>Publication: <b><a href="{{ site.baseurl }}/materials/publications">{{ t.title }}</a></b></li>
{% endif %}
{% endfor %}
</ul>
</p>
</div>
{% if n.current and n.current != "" %}
<div class="wg-current">
<span>Current Activities</span>
<p>
{{ n.current }}
</p>
</div>
{% endif %}
</div><!-- .col-md-5 close -->
{% endfor %}
{% endif %}
</div>
</div>
</section>