-
Notifications
You must be signed in to change notification settings - Fork 0
/
publications.html
103 lines (92 loc) · 3.13 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
---
layout: default
title: Publications
---
<div id="content-div" class="col-md-12">
<!--Portfolio Tab-->
<section id="portfolio" class="bgWhite ofsInBottom">
<!--Portfolio -->
<div class="portfolio">
<!--Main title-->
<div class="main-title">
<h1>my publications</h1>
{% include zigzag-divider.html %}
</div>
<!--End main title-->
<!--Content-->
<div class="content">
<!--Block content-->
<div class="block-content ">
<!--Works-->
<div class="works">
<!--Row-->
<div class="row">
{% assign mid = site.publications | sort: 'date' %}
{% assign sorted_publications = mid | reverse %}
{% for item in sorted_publications %}
<!--Item-->
<div class="media margBMedium">
<div class="media-left media-middle" style="width:25%">
<img class="media-object" alt="" src="{{base}}/{{item.image_path}}" style="width:80%;margin:0 auto"/>
</div>
<div class="media-body media-middle">
<h4>
{% if item.pdf %}
<a href="{{item.pdf}}">{{item.title}}</a></h4>
{% else %}
<a class="disabled" href="{{item.pdf}}">{{item.title}}</a></h4>
{% endif %}
<p><em>{{item.authors}}</em></p>
{% if item.conference %}
<p>{{item.conference}}</p>
{% endif %}
{% if item.pdf %}
<a href="{{item.pdf}}">[Paper]</a>
{% endif %}
{% if item.slides %}
<a href="{{item.slides}}">[Slides]</a>
{% endif %}
{% if item.poster %}
<a href="{{item.poster}}">[Poster]</a>
{% endif %}
{% if item.code %}
<a href="{{item.code}}">[Code]</a>
{% endif %}
{% if item.supp %}
<a href="{{item.supp}}">[Supp]</a>
{% endif %}
{% if item.demo %}
<a href="{{item.demo}}">[Demo]</a>
{% endif %}
<p>{{item.excerpt}}</p>
</div>
</div>
{% if forloop.last == false %}
<div class="divider-m tCenter margTSSmall margBSmall clearfix">
<div class="col-md-12">
<div class="zigzag medium clearfix " data-svg-drawing="yes">
<svg xml:space="preserve" viewBox="0 0 69.172 14.975" width="45" height="5" y="0px" x="0px" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" version="1.1">
<path d="M1.357,12.26 10.807,2.81 20.328,12.332
29.781,2.879 39.223,12.321 48.754,2.79 58.286,12.321 67.815,2.793 " style="stroke-dasharray: 93.9851, 93.9851; stroke-dashoffset: 0;"></path>
</svg>
</div>
</div>
</div>
{% endif %}
<!--End item-->
{% endfor %}
</div>
<!--End row-->
</div>
<!--End works-->
<div class="clearfix"></div>
</div>
<!--End block content-->
</div>
<!--End content-->
{% include download_cv.html %}
</div>
<!--End portfolio-->
</section>
<!--End portfolio tab-->
</div>