-
Notifications
You must be signed in to change notification settings - Fork 1
/
templates.html
36 lines (34 loc) · 1.34 KB
/
templates.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
---
layout: page
title: CI CoE Pilot - Templates
permalink: /materials/templates
---
<section id="intro">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12 space">
<div class="section-title">
<h2>Templates</h2>
</div>
<div class="material" style="margin-top: 3em">
{% if site.data.templates.size > 0 %}
{% for n in site.data.templates %}
<div class="col-md-6 col-sm-6">
<div class="template">
<strong>{{ n.title }}</strong><br/>
<span style="color: #999">{{ n.desc }}</span><br />
{% if n.doc_link.size > 0 %}
<i class="fas fa-file-word"></i> <a href="{{ n.doc_link }}" target="_blank">DOC</a>
{% endif %}
{% if n.pdf_link.size > 0 %}
<i class="fas fa-file-pdf"></i> <a href="{{ n.pdf_link }}" target="_blank">PDF</a>
{% endif %}
</div>
</div>
{% endfor %}
{% endif %}
</div>
</div>
</div>
</div>
</section>