-
Notifications
You must be signed in to change notification settings - Fork 1
/
library.html
36 lines (35 loc) · 1.47 KB
/
library.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
---
layout: page
title: CI CoE Pilot - Library
permalink: /materials/library
---
<section id="intro">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12 space">
<div class="section-title">
<h2>Library</h2>
</div>
<div style="margin-top: 2em; margin-bottom: 1em">
The Library is a resource page for related reading materials, i.e. papers, journals, and reports
from workshops.
</div>
<div class="col-md-12 col-sm-12 space" style="padding-top: 2em">
{% if site.data.library.size > 0 %}
{% for n in site.data.library %}
<div class="col-md-6 col-sm-6" style="margin-bottom: 2em">
<div class="library" style="min-height: 7.5em">
<div style="float: left; min-height: 2em; padding-right: 1em; font-size: 2em; color: #999">
<i class="{{ n.icon }}"></i>
</div>
<a href="{{ n.page }}"><strong>{{ n.title }}</strong></a><br/>
<p style="line-height: 1.3em; font-size: 0.9em">{{ n.description }}</p>
</div>
</div>
{% endfor %}
{% endif %}
</div>
</div>
</div>
</div>
</section>