-
Notifications
You must be signed in to change notification settings - Fork 0
/
pubs.html
40 lines (37 loc) · 934 Bytes
/
pubs.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
---
title: Publications
layout: default
---
<ul class="publist">
{% for paper in site.data.papers %}
<li><p>
{{ paper.authors }} ({{ paper.year }}),
{% if paper.url %}
<a href="{{paper.url}}">{{paper.title}}</a>,
{% else %}
{{paper.title}},
{% endif %}
<i>{{paper.journal}}</i>, {{paper.rest}}
{% if paper.pdf %}
<a class="label label-primary" href="{{paper.pdf}}">pdf</a>
{% endif %}
</p></li>
{% endfor %}
</ul>
<h1>Selected Talks and Posters</h1>
<ul class="publist">
{% for paper in site.data.talks %}
<li><p>
{{ paper.authors }} ({{ paper.year }}),
{% if paper.url %}
<a href="{{paper.url}}">{{paper.title}}</a>,
{% else %}
{{paper.title}},
{% endif %}
<i>{{paper.meeting}}</i>, {{paper.location}}
{% if paper.pdf %}
<a class="label label-primary" href="{{paper.pdf}}">pdf</a>
{% endif %}
</p></li>
{% endfor %}
</ul>