3
3
---
4
4
5
5
{% assign publication = site.data.publist | where: "title", page.title | first %}
6
+ {% assign presentation = site.data.preslist | where: "title", page.title | first %}
6
7
7
8
< article class ="publication " itemscope itemtype ="http://schema.org/ScholarlyArticle ">
8
9
< header class ="publication-header ">
@@ -23,36 +24,70 @@ <h1 class="publication-title" itemprop="headline">{{ publication.title }}</h1>
23
24
{% endif %}
24
25
25
26
< div class ="publication-content " itemprop ="description ">
27
+
26
28
< h3 > Abstract</ h3 >
29
+
27
30
< p > {{ publication.abstract | markdownify }}</ p >
31
+
32
+ {% if presentation %}
33
+ < div class ="presentation-info ">
34
+ < h3 > Presentation</ h3 >
35
+ < div style ="display: block; position: relative ">
36
+ < a href ="{{ presentation.artifacts | split: '(' | last | strip | split: ')' | first | strip }} ">
37
+ < img src ="{{ site.url }}{{ site.baseurl }}/images/pubpic/{{ presentation.id }}.gif "
38
+ class =""
39
+ style ="border-radius:2px; width: 100%; "
40
+ />
41
+ < img src ="{{ site.url }}{{ site.baseurl }}/images/pubpic/{{ presentation.id }}.png "
42
+ class ="gif-animated-static "
43
+ style ="border-radius:2px; width: 100%; position: absolute; top: 0; left: 0; margin; 0 "
44
+ />
45
+ </ a >
46
+ </ div >
47
+ < p > < strong > Title:</ strong > {{ presentation.title }}</ p >
48
+ < p > < strong > Location:</ strong > {{ presentation.location | markdownify }}</ p >
49
+ < p > < strong > Date:</ strong > {{ presentation.date | date: "%B %d, %Y" }}</ p >
50
+ < p > < strong > Speaker:</ strong > {{ presentation.speaker }}</ p >
51
+ < p > < strong > Artifacts:</ strong > {{ presentation.artifacts | markdownify }}</ p >
52
+
53
+ </ div >
54
+ {% endif %}
55
+
28
56
{{ content }}
29
57
</ div >
30
58
31
59
< div class ="publication-info ">
32
60
< h3 > Details</ h3 >
61
+
33
62
{% if publication.journal %}
34
63
< p > < strong > Journal:</ strong > {{ publication.journal }}</ p >
35
64
{% endif %}
65
+
36
66
{% if publication.volume %}
37
67
< p > < strong > Volume:</ strong > {{ publication.volume }}</ p >
38
68
{% endif %}
69
+
39
70
{% if publication.pages %}
40
71
< p > < strong > Pages:</ strong > {{ publication.pages }}</ p >
41
72
{% endif %}
73
+
42
74
{% if publication.cites %}
43
75
< p > < strong > Cited by:</ strong > {{ publication.cites }} times</ p >
44
76
{% endif %}
77
+
45
78
{% if publication.eprint %}
46
- < p > < strong > < a href ="{{ publication.eprint }} " target ="_blank "> E-Print</ a > </ strong > </ p >
79
+ < p > < strong > < a href ="{{ publication.eprint }} " target ="_blank "> E-Print</ a > </ strong > </ p >
47
80
{% endif %}
81
+
48
82
{% if publication.url %}
49
- < p > < strong > < a href ="{{ publication.url }} " target ="_blank "> Read Full Publication</ a > </ strong > </ p >
83
+ < p > < strong > < a href ="{{ publication.url }} " target ="_blank "> Read Full Publication</ a > </ strong > </ p >
50
84
{% endif %}
51
85
</ div >
52
86
53
87
</ article >
54
88
55
89
< style >
90
+
56
91
.publication-header .author-image {
57
92
width : 30px ;
58
93
height : 30px ;
@@ -69,4 +104,19 @@ <h3>Details</h3>
69
104
background-color : # 999999 ;
70
105
padding : 0.5rem ;
71
106
}
107
+
108
+ .presentation-info {
109
+ margin-top : 2rem ;
110
+ border-top : 1px solid # ddd ;
111
+ padding-top : 1rem ;
112
+ }
113
+
114
+ .presentation-info h3 {
115
+ margin-bottom : 1rem ;
116
+ }
117
+
118
+ .presentation-info p {
119
+ margin-bottom : 0.5rem ;
120
+ }
121
+
72
122
</ style >
0 commit comments