-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpubs.html
50 lines (49 loc) · 1.29 KB
/
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
41
42
43
44
45
46
47
48
49
50
---
title: 'Petablox: Declarative Program Analysis for Big Code'
layout: default
---
<div class="row">
<div class="page-header" class="col-lg-12">
<h4>Papers</h4>
</div>
<div class="col-lg-12">
{% for pub in site.data.pubs %}
<div class="panel panel-info">
<div class="panel-heading">
{{ pub.title }}
</div>
<div class="panel-body">
{{pub.authors}}</br>
{{pub.conference}}</br>
{% if pub.award != nil %}
<font color="red"><b> {{pub.award}} </b></font></br>
{% endif %}
{% if pub.paper != nil %}
[<a href="{{site.baseurl}}{{ pub.paper }}">PDF</a>]
{% endif %}
{% if pub.long != nil %}
[<a href="{{site.baseurl}}{{pub.long}}">Long Version</a>]
{% endif %}
{% if pub.slides != nil %}
[<a href="{{site.baseurl}}{{pub.slides}}">Slides</a>]
{% endif %}
{% if pub.poster != nil %}
[<a href="{{site.baseurl}}{{pub.poster}}">Poster</a>]
{% endif %}
{% if pub.video != nil %}
[<a href="{{site.baseurl}}{{pub.video}}">Video</a>]
{% endif %}
{% if pub.code != nil %}
[ {{pub.code}}]
{% endif %}
{% if pub.other != nil %}
{{pub.other}}
{% endif %}
{% if pub.howto != nil %}
[<a href="{{site.baseurl}}{{pub.howto}}">How to Run</a>]
{% endif %}
</div>
</div>
{% endfor %}
</div>
</div>