-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpublications.html
59 lines (57 loc) · 2.45 KB
/
publications.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
---
layout: page
title: CI CoE Pilot - Publications
permalink: /materials/publications
---
<section id="intro">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12 space">
<div class="section-title">
<h1>Publications</h1>
</div>
<div class="material">
{% for n in site.data.publications %}
<div class="publication">
<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><br/>
<span style="color: #666">{{ n.authors }}</span><br/>
{% if n.venue.size > 0 %}
<span style="color: #666">{{ n.venue }}</span><br/>
{% endif %}
<div style="background-color: #f7f7f7; padding: 1em; margin-top: 1em">
<span style="color: #999">{{ n.abstract }}</span>
</div>
{% if n.bibtex.size > 0 %}
<div style='background-color: #f2f2f2; padding: 1em; font-size: 0.8em; font-family: Menlo, Monaco, Consolas, "Courier New", monospace'>
{{ n.bibtex }}
</div>
{% endif %}
</div>
{% endfor %}
</div>
</div>
<div class="col-md-12 col-sm-12 space" style="background-color: #f7f7f7">
<div class="section-title">
<h3>Relevant publications from outside CICoE</h3>
</div>
{% if site.data.resources.size > 0 %}
{% for n in site.data.resources %}
<div class="material">
<ul>
<li><a href="{{ n.website }}" target="_blank">{{ n.title }}</a></li>
</ul>
</div>
{% endfor %}
{% endif %}
</div>
</div>
</div>
</section>