-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathagenda.html
60 lines (58 loc) · 1.89 KB
/
agenda.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
---
layout: default
title: Agenda - September 13th, 2024
permalink: /agenda/
---
<div class="container">
<div class="row">
<div class="col-md-12">
<h2>September 13th, 2024 - Agenda</h2>
<!-- <p>
We do not have a agenda worked out yet. Do you want to speak at this event? Please check the
<a href="/speakers">speakers</a> page to see how you can become a speaker!
</p>-->
<table class="table table-striped">
<colgroup>
<col class="row-1" />
<col class="row-1" />
<col class="row-6" />
<col class="row-4" />
</colgroup>
<thead>
<tr>
<th>Start</th>
<th>Duration</th>
<th>Title</th>
<th>Speaker</th>
</tr>
</thead>
<tbody>
{% for item in site.data.agenda %}
<tr class="{{ item.type }}">
<td>{{ item.start }}</td>
<td>{{ item.end }}</td>
<td>
{% if item.url %}
<a href="{{ item.url }}">
{% endif %}
{{ item.title }}
{% if item.url %}
</a>
{% endif %}
</td>
<td>
{% if item.url %}
<a href="{{ item.url }}">
{% endif %}
{{ item.speaker }}
{% if item.url %}
</a>
{% endif %}
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
</div>