forked from jacopo-massa/hpdc24-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheu-track.html
39 lines (37 loc) · 1.28 KB
/
eu-track.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
---
title: EU-Track
layout: page
slide_id: 4
---
<br>
<div class="row mt-xs-0 mt-sm-0 my-2">
<div>
<h4 class="conference">EU Track schedule</h4>
<p> The EU track is scheduled for <b>June 6, 2:00pm - 3:40pm</b>, in parallel with the PhD session.
The schedule of the presentations is the following:
</p>
<br>
<div class="conference-text text-muted">
<table class="table table-bordered table-striped table-hover table-sm">
<tr>
<th>Title</th>
</tr>
{% for eu in site.data.submissions.eu_track %}
<tr>
<td>
<p class="mb-2">
<b>(#{{eu.id}}) {{eu.title}}</b>
{% if eu.authors %}
{% for author in eu.authors %}
{% if forloop.first %}
<br>
<i><b>Authors:</b></i> {% else %}, {% endif %}
<i>{{author.name}}</a>
{% endfor %}
{% endif %}
</p>
</tr>
{% endfor %}
</table>
</div>
</div>