-
Notifications
You must be signed in to change notification settings - Fork 1
/
library_materials.html
29 lines (28 loc) · 1.07 KB
/
library_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
---
layout: page
title: CI CoE Pilot - Library Materials
permalink: /materials/library_materials
---
<section id="intro">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12 space">
<div class="section-title">
<h2>Library: Outside Relevant Materials</h2>
</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_materials %}
<div class="col-md-6 col-sm-6">
<div class="presentation" style="min-height: 8em">
<a href="{{ n.url }}" target="_blank"><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>