-
Notifications
You must be signed in to change notification settings - Fork 339
/
Copy pathspeakers.html.eco
25 lines (22 loc) · 981 Bytes
/
speakers.html.eco
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
<h2 class="section-title"><%= @labels['speakers'] %></h2>
<ul class="speakers-list">
<% for speaker in @schedule: %>
<% if speaker.presentation: %>
<li class="speakers-item" itemprop="performer" itemscope itemtype="http://schema.org/Person">
<% if speaker.photo: %>
<span class="speaker-photo">
<img class="photo" src="<%= speaker.photo %>" alt="<%= speaker.name %>" itemprop="image">
</span>
<% end %>
<h3 class="speech-title">
<% if speaker.presentation.time: %>
<span class="speech-time"><%= speaker.presentation.time %></span>
<% end %>
<span> <%= speaker.presentation.title %></span>
</h3>
<h3 class="speakers-name"><%= speaker.name %> <% if speaker.link: %><a href="<%= speaker.link.href %>" target="_blank" title="<%= speaker.link.text %>"><%= speaker.link.text %></a><% end %></h3>
<p class="speakers-bio"><%= speaker.bio %></p>
</li>
<% end %>
<% end %>
</ul>