-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpublications.html
More file actions
46 lines (33 loc) · 986 Bytes
/
publications.html
File metadata and controls
46 lines (33 loc) · 986 Bytes
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
---
layout: default
title: Publications and Media
---
<div class="container">
<div class="section-title">
<h2>Dissemination and Scientific Publications about Ranflood</h2>
<p>Publications</p>
</div>
<section>
<div class="row content">
<ul class="offset-1 col-10 list-group list-group-flush">
{% for p in site.data.papers %}
<li class="list-group-item"><a class="fs-3" href="{{ p.link }}"><i class="bi bi-file-earmark-pdf"></i></a> {{ p.entry }}
<p class="float-end">{{ p.other }}</p>
</li>
{% endfor %}
</ul>
</section>
<div class="section-title">
<p>Media</p>
</div>
<section>
<div class="row content">
<ul class="offset-1 col-10 list-group list-group-flush">
{% for p in site.data.media %}
<li class="list-group-item"><a class="fs-3" target="_blank" href="{{ p.link }}"><i class="bi bi-arrow-up-right-square"></i></a> {{ p.entry }}
<p class="float-end">{{ p.other }}</p>
</li>
{% endfor %}
</ul>
</section>
</div>