forked from linok-bc/linok-bc.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.html
335 lines (321 loc) · 12.6 KB
/
template.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>{{ name }}</title>
<meta name="author" content="{{ name }}" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" type="text/css" href="stylesheet.css" />
<link rel="icon" href="static/favicon.svg" type="image/svg+xml" />
</head>
<body>
<table
style="
width: 100%;
max-width: 800px;
border: 0px;
border-spacing: 0px;
border-collapse: separate;
margin-right: auto;
margin-left: auto;
"
>
<tbody>
<tr style="padding: 0px">
<td style="padding: 0px">
<table
style="
width: 100%;
border: 0px;
border-spacing: 0px;
border-collapse: separate;
margin-right: auto;
margin-left: auto;
"
>
<tbody>
<tr style="padding: 0px">
<td style="padding: 2.5%; width: 63%; vertical-align: middle">
<p style="text-align: center">
<name>{{ name }}</name>
</p>
{% markdown %}
{{ bio }}
{% endmarkdown %}
</p>
<p style="text-align: center">
<a href="mailto:{{ email }}">Email</a>
 / 
<a href="{{ resume }}">Resume</a>
 / 
<!-- <a href="data/JonBarron-bio.txt">Bio</a>  /  -->
<!-- <a href="https://scholar.google.com/citations?hl=en&user=jktWnL8AAAAJ">Google Scholar</a>  /  -->
<!-- <a href="https://twitter.com/jon_barron">Twitter</a>  /  -->
<a href="{{ github }}">Github</a>
</p>
</td>
<td style="padding: 2.5%; width: 30%; max-width: 30%" class="content-to-hide">
<img
style="width: 100%; max-width: 100%"
alt="profile photo"
src="{{ mugshot }}"
class="hoverZoomLink"
/>
</td>
</tr>
</tbody>
</table>
<table
style="
width: 100%;
border: 0px;
border-spacing: 0px;
border-collapse: separate;
margin-right: auto;
margin-left: auto;
"
>
<tbody>
<tr>
<!-- <td style="padding:20px;width:100%;vertical-align:middle"> -->
<heading>Publications</heading>
</tr>
</tbody>
</table>
<table
style="
width: 100%;
border: 0px;
border-spacing: 0px;
border-collapse: separate;
margin-right: auto;
margin-left: auto;
"
>
<tbody>
{% for publication in publications %}
{% if publication.video or publication.image_bg %}
<tr onmouseout="{{ publication.hash }}_stop()" onmouseover="{{ publication.hash }}_start()">
{% else %}
<tr>
{% endif %}
<td style="padding: 20px; width: 25%; vertical-align: middle" class="content-to-hide">
{% if publication.video or publication.image_bg %}
<div class="one">
<div class="two" id="{{ publication.hash }}_image">
{% if publication.video %}
<video width="100%" height="100%" muted autoplay loop>
<source
src="{{ publication.video }}"
type="video/{{ publication.video.split('.')[-1] }}"
/>
Your browser does not support the video tag.
</video>
{% else %}
<img
src="{{ publication.image_bg }}"
width="160"
/>
{% endif %}
</div>
<img
src="{{ publication.image }}"
width="160"
/>
</div>
<script type="text/javascript">
function {{ publication.hash }}_start() {
let elem = document.getElementById(
"{{ publication.hash }}_image",
);
elem.style.opacity = "1";
}
function {{ publication.hash }}_stop() {
let elem = document.getElementById(
"{{ publication.hash }}_image",
);
elem.style.opacity = "0";
}
{{ publication.hash }}_stop();
</script>
{% else %}
<img
src="{{ publication.image }}"
width="160"
/>
{% endif %}
</td>
<td style="padding: 20px; width: 75%; vertical-align: middle">
{% markdown %}
**{{ publication.name }}**<br>
<span class="authors">{{ publication.authors }}</span>
{% if publication.venue %}<br>_{{ publication.venue }}_{% endif %}<br>{{ publication.link }}
{% endmarkdown %}
</td>
</tr>
{% endfor %}
<table
style="
width: 100%;
border: 0px;
border-spacing: 0px;
border-collapse: separate;
margin-right: auto;
margin-left: auto;
"
>
<br>
<tbody>
<tr>
<td style="padding:20px;width:100%;vertical-align:middle">
<heading>Projects</heading>
</tr>
<br><br>
<!-- <tr>
{% for category in categories %}
<a href="#" class="category-link {% if loop.first %}active{% endif %}" category="{{ category.hash }}">{{ category.name }}</a>
{% endfor %}
</tr> -->
<script type="text/javascript">
const categoryLinks = document.querySelectorAll('.category-link');
function toggleCategory(categoryHash) {
const categoryLinks = document.querySelectorAll('.category-link');
const categoryBodies = document.querySelectorAll('.category-body');
categoryLinks.forEach(link => {
const linkCategoryHash = link.getAttribute('category');
if (linkCategoryHash === categoryHash) {
link.classList.add('active');
} else {
link.classList.remove('active');
}
});
categoryBodies.forEach(body => {
const bodyCategoryHash = body.getAttribute('category');
if (bodyCategoryHash === categoryHash) {
body.classList.add('active');
} else {
body.classList.remove('active');
}
});
}
categoryLinks.forEach(link => {
link.addEventListener('click', function(e) {
e.preventDefault(); // Prevent the default link behavior
const categoryHash = this.getAttribute('category');
toggleCategory(categoryHash);
});
});
</script>
</tbody>
</table>
<table
style="
width: 100%;
border: 0px;
border-spacing: 0px;
border-collapse: separate;
margin-right: auto;
margin-left: auto;
"
>
{% for category in categories %}
<tbody class="category-body {% if loop.first %}active{% endif %}" category="{{ category.hash }}">
{% for project in category.projects %}
{% if project.video or project.image_bg %}
<tr onmouseout="{{ project.hash }}_stop()" onmouseover="{{ project.hash }}_start()">
{% else %}
<tr>
{% endif %}
<td style="padding: 20px; width: 25%; vertical-align: middle" class="content-to-hide">
{% if project.video or project.image_bg %}
<div class="one">
<div class="two" id="{{ project.hash }}_image">
{% if project.video %}
<video width="100%" height="100%" muted autoplay loop>
<source
src="{{ project.video }}"
type="video/{{ project.video.split('.')[-1] }}"
/>
Your browser does not support the video tag.
</video>
{% else %}
<img
src="{{ project.image_bg }}"
width="160"
/>
{% endif %}
</div>
<img
src="{{ project.image }}"
width="160"
/>
</div>
<script type="text/javascript">
function {{ project.hash }}_start() {
let elem = document.getElementById(
"{{ project.hash }}_image",
);
elem.style.opacity = "1";
}
function {{ project.hash }}_stop() {
let elem = document.getElementById(
"{{ project.hash }}_image",
);
elem.style.opacity = "0";
}
{{ project.hash }}_stop();
</script>
{% else %}
<img
src="{{ project.image }}"
width="160"
/>
{% endif %}
</td>
<td style="padding: 20px; width: 75%; vertical-align: middle">
{% markdown %}
**{{ project.name }}**<br>
{% if project.link %}{{ project.link }}<br>{% endif %}
{{ project.desc }}
{% endmarkdown %}
</td>
</tr>
{% endfor %}
</tbody>
{% endfor %}
<table
style="
width: 100%;
border: 0px;
border-spacing: 0px;
border-collapse: separate;
margin-right: auto;
margin-left: auto;
"
>
<tbody>
<tr>
<td style="padding: 0px">
<br />
<p style="text-align: center; font-size: small">
Source adapted from
<a
style="font-size: small"
href="https://jonbarron.info"
>Jon Barron's website</a
>
</p>
</td>
</tr>
</tbody>
</table>
</tbody>
</table>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</body>
</html>