-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrelevant_projects.html
54 lines (53 loc) · 2.19 KB
/
relevant_projects.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
---
layout: page
title: Relevant Projects - CI CoE Pilot
permalink: /materials/projects
---
<section id="intro">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12 space">
<div class="section-title">
<h1>Relevant Projects</h1>
</div>
<p> </p>
{% assign rp = site.data.relevantprojects | sort: 'group' %}
{% if rp.size > 0 %}
{% for n in rp %}
<div class="col-md-12 col-sm-12">
<div class="activity"
style="border-top: 0.4em solid {% if n.color %} #{{ n.color }} {% else %} #0086B3 {% endif %}">
<div class="title">
{{ n.group }}
</div>
{% if n.description.size > 0 %}
<div class="description">
{{ n.description }}
</div>
{% endif %}
<div class="row content">
{% assign projects = n.projects | sort: 'title' %}
{% for p in projects %}
<div class="col-sm-12 col-md-12 col-lg-6" style="margin-bottom: 0.5em">
<i class="fas fa-link" style="color: #999"></i>
<a href="{{ p.website }}" target="_blank">
<strong>{{ p.title }}</strong>
</a>
{% if p.description.size > 0 %}
<br/>
<span style="margin-left: 1.4em; font-size: 0.8em; font-style: italic; color: #666">
{{ p.description }}
</span>
{% endif %}
</div>
{% endfor %}
</div>
</div>
</div>
{% endfor %}
{% endif %}
</div>
</div>
</div>
</div>
</section>