-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpublications.html
More file actions
56 lines (50 loc) · 1.26 KB
/
publications.html
File metadata and controls
56 lines (50 loc) · 1.26 KB
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
---
layout: page
title: Publications
show_title: true
permalink: /publications/
tags: publications
---
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
.btn {
background-color: #A0D4A4;
color: white;
padding: 0px 4px;
text-align: center;
display: inline-block;
cursor: pointer;
border-radius: 6px
}
.btn:hover {
background-color: #999;
}
</style>
{% for year in site.data.years %}
<h2>{{ year }}</h2>
<div>
<table>
{% for paper in site.data.publications %}
{% if paper.year == year %}
<tr>
<td>
<h4>{{ paper.title }}</h4>
<small>{{ paper.authors }}<br>
<i>{{ paper.venue }}</i><br>
{% if paper.note.size > 0 %}
{{ paper.note }}<br>
{% endif %}
{% if paper.pdf.size > 0 %}
<a href="{{ paper.pdf }}" style="text-decoration:none;"><button class="btn">
<i class="fa fa-puzzle-piece"></i> Read Paper</button></a>
{% endif %}</small>
</td>
<td style="vertical-align:middle; width:30%;">
<center><img src="{{ paper.figure }}" style="max-height:200px; border-radius:10px;" /></center>
</td>
</tr>
{% endif %}
{% endfor %}
</table>
</div>
{% endfor %}