-
Notifications
You must be signed in to change notification settings - Fork 1
/
publications.html
74 lines (73 loc) · 3.33 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
---
layout: default
---
<article id="main">
<header class="special container">
<span class="icon fa-book"></span>
<h2>Publications</h2>
</header>
<div class="publication-navi style4 container">
<a href="#Articles" class="scrolly"><h3>Articles</h3></a>
<a href="#Books" class="scrolly"><h3>Books</h3></a>
<a href="#Book-chapters" class="scrolly"><h3>Book chapters</h3></a>
<a href="#Conference" class="scrolly"><h3>Conference articles</h3></a>
<a href="#Other" class="scrolly"><h3>Other</h3></a>
</div>
<section id="Articles" class="wrapper style4 container">
<h2>Articles:</h2>
{% assign postsByYear = site.categories.article | group_by_exp:"article", "article.date | date: '%Y'" %}
{% for year in postsByYear %}
<h3>{{year.name}}</h3>
{% for post in year.items %}
<p class="publication">
{{ post.excerpt | remove: '<p>' | remove: '</p>'}}
{% if post.pdf %}
<a href="{{post.pdf}}"><span class="icon fa-file-pdf-o"></span></a>
{% endif %}
{% if post.link %}
<a href="{{post.link}}" target=”_blank”><span class="icon fa-globe"></span></a>
{% endif %}
</p>
{% endfor %}
{% endfor %}
<a href="#main" id="back-to-top" class="scrolly"><h3>Back to top</h3></a>
</section>
<section id="Books" class="wrapper style4 container">
<h2>Books:</h2>
{% assign postsByYear = site.categories.book | group_by_exp:"book", "book.date | date: '%Y'" %}
{% for year in postsByYear %}
<h3>{{year.name}}</h3>
{% for post in year.items %}
<p class="publication">
{{ post.excerpt | remove: '<p>' | remove: '</p>'}}
{% if post.pdf %}
<a href="{{post.pdf}}"><span class="icon fa-file-pdf-o"></span></a>
{% endif %}
{% if post.link %}
<a href="{{post.link}}" target=”_blank”><span class="icon fa-globe"></span></a>
{% endif %}
</p>
{% endfor %}
{% endfor %}
<a href="#main" id="back-to-top" class="scrolly"><h3>Back to top</h3></a>
</section>
<section id="Book-chapters" class="wrapper style4 container">
<h2>Book chapters:</h2>
{% assign postsByYear = site.categories.book-chapter | group_by_exp:"book-chapter", "book-chapter.date | date: '%Y'" %}
{% for year in postsByYear %}
<h3>{{year.name}}</h3>
{% for post in year.items %}
<p class="publication">
{{ post.excerpt | remove: '<p>' | remove: '</p>'}}
{% if post.pdf %}
<a href="{{post.pdf}}"><span class="icon fa-file-pdf-o"></span></a>
{% endif %}
{% if post.link %}
<a href="{{post.link}}" target=”_blank”><span class="icon fa-globe"></span></a>
{% endif %}
</p>
{% endfor %}
{% endfor %}
<a href="#main" id="back-to-top" class="scrolly"><h3>Back to top</h3></a>
</section>
</article>