forked from elgentos/magetitans
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathagenda.html
55 lines (54 loc) · 1.67 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
---
layout: default
title: Agenda - June 7th, 2019
permalink: /agenda/
---
<div class="container">
<div class="row">
<div class="col-md-12">
<h2>June 7th, 2019 @ <a href="/venue">Venue - EM2 "The Barn"</a></h2>
<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>End</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>