-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpublications.html
56 lines (50 loc) · 1.87 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
---
layout: default
permalink: publications
---
<section>
<h1>Publications</h1>
<p>
* denotes equal contribution, + denotes significant contribution.
</p>
{% for post in site.publications reversed %}
<div class="media t-hackcss-media">
<div class="media-body">
<div class="media-heading">
<span>
{{ post.title }}
</span>
</div>
<div class="media-content">
{% if post.pdf_link and post.pdf_link != "" %}
{% if post.pdf_link contains "https://" or post.pdf_link contains "http://" %}
<a href="{{ post.pdf_link }}">Paper</a>
{% else %}
<a href="{{ post.pdf_link | prepend: '/pub/' | prepend: base_path }}">Paper</a>
{% endif %}
{% endif %}
{% if post.preprint_link and post.preprint_link != "" %}
<a href="{{ post.preprint_link }}">Preprint</a>
{% endif %}
{% if post.code_link and post.code_link != "" %}
<a href="{{ post.code_link }}">Code</a>
{% endif %}
{% if post.slides_link and post.slides_link != "" %}
{% if post.slides_link contains "https://" or post.slides_link contains "http://" %}
<a href="{{ post.slides_link }}">Slides</a>
{% else %}
<a href="{{ post.slides_link | prepend: '/pub/' | prepend: base_path }}">Slides</a>
{% endif %}
{% endif %}
{% if post.video_link and post.video_link != "" %}
<a href="{{ post.video_link }}">Video</a>
{% endif %}
{% if post.citation %}
</br>
{{ post.citation | replace:"Joyce Zhou", "<span style='font-weight:bold'>Joyce Zhou</span>" }}
{% endif %}
</div>
</div>
</div>
{% endfor %}
</section>