-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_publication_list_entry.html
43 lines (39 loc) · 1.63 KB
/
_publication_list_entry.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
<div class="row mar-bot-30">
<div class="col-md-3">
<img class="img-responsive" src="{{ site.url }}/publications/images/{{ publication.images.thumb }}">
</div>
<div class="col-md-9">
<p class="pub-title">{{ publication.title }}</p>
<p class="pub-authors">{{ publication.authors }}</p>
<p class="pub-info">
<strong>{{ publication.pub_info_name }}</strong>. {{ publication.pub_info_date }}
</p>
<p class="pub-description">
{% if publication.paper_link %}
<a class="btn btn-default btn-xs" href="{{ publication.paper_link }}" target="_blank" role="button">
<i class="fa fa-book" aria-hidden="true"></i> Paper
</a>
{% endif %}
{% if publication.webpage_link %}
<a class="btn btn-default btn-xs" href="{{ publication.webpage_link }}" target="_blank" role="button">
<i class="fa fa-users" aria-hidden="true"></i> Project
</a>
{% endif %}
{% if publication.blog_link %}
<a class="btn btn-default btn-xs" href="{{ publication.blog_link }}" target="_blank" role="button">
<i class="fa fa-users" aria-hidden="true"></i> Blog
</a>
{% endif %}
{% if publication.video_link %}
<a class="btn btn-default btn-xs" href="{{ publication.video_link }}" target="_blank" role="button">
<i class="fa fa-video-camera" aria-hidden="true"></i> Video
</a>
{% endif %}
{% if publication.code_link %}
<a class="btn btn-default btn-xs" href="{{ publication.code_link }}" target="_blank" role="button">
<i class="fa fa-code" aria-hidden="true"></i> Code
</a>
{% endif %}
</p>
</div>
</div>