forked from jacopo-massa/hpdc24-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworkshops.html
executable file
·81 lines (80 loc) · 2.59 KB
/
workshops.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
---
title: Workshops and Tutorials
layout: page
slide_id: 3
---
<br>
<div class="row mt-xs-0 mt-sm-0 my-2">
<div>
<h6>Accepted Workshops</h6>
{% if site.data.wst.workshops != nil %}
<p class="conference-text text-muted">
We are proud to announce that a large collection of workshops and tutorials will be co-located with HPDC
2024. They will be scheduled
on 3rd and 4th June 2024, at the Department of Computer Science of the University of Pisa, Italy ("Polo
Fibonacci"). Workshop co-chairs have accepted
<b>{{site.data.wst.workshops | size}}</b> workshops and <b>{{site.data.wst.tutorials | size}}</b> tutorials
covering research topics strictly related to the HPDC conference series.
</p>
<p class="conference-text text-muted">
The table below report the <b>{{site.data.wst.workshops | size}}</b> accepted workshops that will be
co-located with HPDC 2024:
</p>
<div class="conference-text text-muted">
<table class="table table-bordered table-striped table-hover table-sm">
<tr>
<th>Link</th>
<th>Title</th>
</tr>
{% assign sorted_workshops = site.data.wst.workshops | sort: 'acronym' %}
{% for workshop in sorted_workshops %}
<tr>
<td><a target="_blank" href="{{workshop.url}}">{{workshop.acronym}}</a></td>
<td>{{workshop.title}}</td>
</tr>
{% endfor %}
</table>
</div>
{% else %}
<div class="alert alert-warning rounded text-center mx-3 my-5">
<i class="fa-solid fa-sync fa-spin mr-3" aria-hidden="true"></i>TBA.
</div>
{% endif %}
</div>
<br>
<div>
<h6>Accepted Tutorials</h6>
{% if site.data.wst.tutorials != nil %}
<p class="conference-text text-muted">
Furthermore, we are very happy to announce that HPDC 2024 will host <b>{{site.data.wst.tutorials |
size}}</b> tutorials, still scheduled on 3rd and 4th June 2024.
</p>
<div class="conference-text">
<table class="table table-bordered table-striped table-hover table-sm">
{% for tutorial in site.data.wst.tutorials %}
<tr>
<td class="w-25">
<p><b>{{tutorial.title}}</b></p>
<p>
{% for speaker in tutorial.speakers %}
{% if forloop.first %}<b>Speakers:</b> {% else %}, {% endif %}
<i>{{speaker.name}} ({{speaker.affiliation}})</i>
{% endfor %}
</p>
</td>
<td class="w-75 align-middle">
{% if tutorial.description %}
<p>{{tutorial.description}}</p>
{% else %}
<i class="fa-solid fa-sync fa-spin mr-2" aria-hidden="true"></i>TBA.
{% endif %}
</td>
</tr>
{% endfor %}
</table>
</div>
{% else %}
{% include tba.html %}
{% endif %}
</div>
</div>