-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathprogram.html
89 lines (84 loc) · 2.83 KB
/
program.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
82
83
84
85
86
87
88
89
---
layout: default_site
permalink: /program/index.html
---
<a class='anchor' id='program'></a>
<section class="program">
<div class="container">
<div class="col-xs-12 col-lg-10 col-lg-offset-1">
<h2 class="section-title">Program</h2>
<div class="program-container">
<a class='anchor' id='talks'></a>
{% include schedule_tab_switcher_talks.html %}
<!-- Talks -->
<ul class="cbp_tmtimeline">
{% for item in site.data.program %}
<li>
<time class="cbp_tmtime" datetime="2015-01-10"><span>10/01/15</span> <span>{{item.time}}</span></time>
{% if item.type == 'talk' %}
<a href="https://twitter.com/{{item.speaker_twitter}}">
<div class="cbp_tmicon">
</div>
</a>
{% endif %}
<div class="cbp_tmlabel">
<h3>{{ item.title }}</h3>
{% if item.type == 'talk' %}
<h5>
{% for speaker in item.speakers %}
{% if speaker.twitter %}
<a href="https://twitter.com/{{speaker.twitter}}" target="_blank" class='speaker-name'>
{{ speaker.name }}
</a>
{% else %}
{{ speaker.name }}
{% endif %}
{% endfor %}
</h5>
{% if item.title != "Keynote" %}
<div class="cbp_desc">
<p> {{item.description}} </p>
</div>
{% endif %}
{% endif %}
</div>
</li>
{% endfor %}
</ul>
<a class='anchor' id='workshops'></a>
{% include schedule_tab_switcher_workshops.html %}
<!-- Workshop -->
<ul class="cbp_tmtimeline">
{% for item in site.data.workshops %}
<li>
<time class="cbp_tmtime" datetime="2015-01-10"><span>10/01/15</span> <span>{{item.time}}</span></time>
{% if item.type == 'talk' %}
<a href="https://twitter.com/{{item.speaker_twitter}}">
<div class="cbp_tmicon">
</div>
</a>
{% endif %}
<div class="cbp_tmlabel">
<h3>{{ item.title }}</h3>
{% if item.type == 'talk' %}
<h5>
{% if item.speaker_twitter %}
<a href="https://twitter.com/{{item.speaker_twitter}}">
{{ item.speaker_name }}
</a>
{% else %}
{{ item.speaker_name }}
{% endif %}
</h5>
<div class="cbp_desc">
<p> {{item.description}} </p>
</div>
{% endif %}
</div>
</li>
{% endfor %}
</ul>
</div>
</div>
</div>
</section>