-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblockchain.html
executable file
·72 lines (61 loc) · 2.55 KB
/
blockchain.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
---
layout: page
slide_id: 4
lang: en
---
See the <a href="https://sol.sbc.org.br/index.php/wbci">WBCI Proceedings</a>
See the <a href="https://creating.city/wbci2022/program.html">For Full Program</a>
<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">
{% assign valid_days = site.data.schedule | where:'date', '2022-08-04' %}
{% for day in valid_days %}
<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">
{% assign valid_timeslots = day.timeslots | where:'title', 'Special Session: Colóquio em Blockchain e Web Descentralizada / Sala: 202' %}
{% for timeslot in valid_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-success 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%">
<p>{{event.note}}</p>
</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 %}