forked from HighLO/highlo.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpublications-archive.html
More file actions
51 lines (34 loc) · 1019 Bytes
/
publications-archive.html
File metadata and controls
51 lines (34 loc) · 1019 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
47
48
49
50
51
---
---
<!doctype html>
<html lang="en">
{% include head.html %}
<body>
<script src="https://kit.fontawesome.com/e441288905.js" crossorigin="anonymous"></script>
<div id="main">
{% include topnav.html %}
<div class="spacer">
</div>
<div id="publications" class="section p-publications">
<div class="container">
<h1>All publications</h1>
{% assign publications = site.publications | sort: 'date' | reverse %}
{% for pub in publications %}
<p>
<b>{{ pub.title }}</b>
<br>
<span class="label {{ pub.label }}">{{ pub.label }}</span> {{ pub.where }}
{% if pub.link %}<br><a href="{{ pub.link }}" target="_blank">{{ pub.link }}</a>{% endif %}<br>
<i>{{ pub.date | date: '%b %Y' }}</i>
</p>
{% endfor %}
<center>
<br>
<b><i><a href="index.html">[back to home]</a></i></b>
</center>
</div>
</div>
{% include footer.html %}
</div>
</body>
</html>