-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmaterials.html
129 lines (122 loc) · 5.65 KB
/
materials.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
---
layout: page
title: CI CoE Pilot - Materials
permalink: /materials/
---
<section id="intro">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12 space">
<div class="section-title">
<h2>Materials</h2>
</div>
</div>
<div class="col-md-12 col-sm-12">
<div class="section-title" style="margin-top: 4em; margin-bottom: 2em">
<h4><a href="/materials/publications">Publications</a></h4>
</div>
{% if site.data.publications.size > 0 %}
{% for n in site.data.publications %}
<div class="col-md-12 col-sm-12">
<div class="materials">
<strong>
{% if n.link.size > 0 %}
<a href="{{ n.link }}" target="_blank"><i class="fas fa-external-link-alt"></i></a>
{% endif %}
{% if n.pdf.size > 0 %}
<a href="/publications/{{ n.pdf }}" target="_blank"><i class="fas fa-file-pdf"></i></a>
{% endif %}
{{ n.title }}
</strong>,
<i>{{ n.authors }}</i>, {{ n.venue }}
</div>
</div>
{% endfor %}
{% endif %}
</div>
<div class="col-md-12 col-sm-12">
<div class="section-title" style="margin-top: 4em; margin-bottom: 2em">
<h4><a href="/materials/presentations">Presentations</a></h4>
</div>
{% if site.data.presentations.size > 0 %}
{% for n in site.data.presentations %}
<div class="col-md-12 col-sm-12">
<div class="materials">
<strong>
<a href="/presentations/{{ n.file }}" target="_blank"><i class="fas fa-file-pdf"></i></a>
{% if n.video_link.size > 0 %}
<a href="{{ n.video_link }}" target="_blank"><i class="fab fa-youtube"
style="color: #990000"></i></a>
{% endif %}
{{ n.title }}
</strong>,
<i>{{ n.author }}</i>, {{ n.venue }}, {{ n.date }}
</div>
</div>
{% endfor %}
{% endif %}
</div>
{% if site.data.templates.size > 0 %}
<div class="col-md-12 col-sm-12">
<div class="section-title" style="margin-top: 4em; margin-bottom: 2em">
<h4><a href="/materials/templates">Templates</a></h4>
</div>
{% assign templates = site.data.templates | sort: "title" %}
{% for n in templates %}
<div class="col-md-12 col-sm-12">
<div class="materials">
{% if n.doc_link.size > 0 %}
<a href="{{ n.doc_link }}" target="_blank">
<i class="fas fa-file-word" style="color: #1D4B77"></i></a>
{% endif %}
{% if n.pdf_link.size > 0 %}
<a href="{{ n.pdf_link }}" target="_blank">
<i class="fas fa-file-pdf" style="color: #9e4a1b"></i></a>
{% endif %}
<strong>{{ n.title }}</strong>
</div>
</div>
{% endfor %}
</div>
{% endif %}
{% if site.data.videos.size > 0 %}
<div class="col-md-12 col-sm-12">
<div class="section-title" style="margin-top: 4em; margin-bottom: 2em">
<h4><a href="/materials/videos">Videos</a></h4>
</div>
{% assign videos = site.data.videos | sort: "title" %}
{% for n in videos %}
<div class="col-md-12 col-sm-12">
<div class="materials">
<a href="https://www.youtube.com/embed/{{ n.youtube_id }}" target="_blank">
<i class="fab fa-youtube" style="color: #990000"></i></a>
<strong>{{ n.title }}</strong>
</div>
</div>
{% endfor %}
</div>
{% endif %}
{% if site.data.deployments_software.size > 0 %}
<div class="col-md-12 col-sm-12">
<div class="section-title" style="margin-bottom: 2em">
<h4><a href="/materials/deployments_software">Deployments and Software</a></h4>
</div>
{% assign ds = site.data.deployments_software | sort: "title" %}
{% for n in ds %}
<div class="col-md-12 col-sm-12">
<div class="materials">
{% if n.link.size > 0 %}
<a href="{{ n.link }}" target="_blank"><i class="fas fa-external-link-alt"></i></a>
{% endif %}
{% if n.github_link.size > 0 %}
<a href="{{ n.github_link }}" target="_blank"><i class="fab fa-github"></i></a>
{% endif %}
<strong>{{ n.title }}</strong>
</div>
</div>
{% endfor %}
</div>
{% endif %}
</div>
</div>
</section>