-
Notifications
You must be signed in to change notification settings - Fork 0
/
program_es.html
executable file
·62 lines (56 loc) · 2.12 KB
/
program_es.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
---
layout: page
slide_id: 4
lang: es
---
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-10 offset-lg-1 col-xl-10 offset-xl-1">
{% for day in site.data.schedule %}
<div>
<h4 class="schedule-table-heading">{{ day.dateReadable }} - Day {{ forloop.index }}</h4>
<table class="table table-bordered table-striped table-hover table-responsive table-sm">
{% for timeslot in day.timeslots %}
<thead>
<tr>
<th class="bg-info text-center">
<div>{{timeslot.startTime}}-{{timeslot.endTime}}</div>
</th>
{% if timeslot.type == "service" %}
<th class="bg-warning text-center">
<p class="text-muted">{{timeslot.title}}</p>
</th>
{% else %}
<th class="bg-primary text-center">
<h5>{{timeslot.title}}</h5>
{% if timeslot.speaker %}
<h5>{{timeslot.speaker}}</h5>
{% endif %}
{% if timeslot.chair %}
<h6>Session chair:{{timeslot.chair}}</h6>
{% endif %}
</th>
{% endif %}
</tr>
</thead>
{% if timeslot.events %}
<tbody>
{% for event in timeslot.events %}
<tr>
<td width="20%">
</td>
<td>
<p><b>{{event.title}}</b></p>
<p><i>{{event.speakers}}</i></p>
</td>
</tr>
{% endfor %}
</tbody>
{% endif %}
{% endfor %}
</table>
</div>
{% endfor %}
{% include contact-us.html %}
</div>
</div>
{% include sponsors.html %}