trelixir.fi/tpl/index_event.html.glemp

29 lines
707 B
Text

<h3 class="content-subhead"><%= event.title %></h3>
<div class="pure-g">
<div class="l-box-lrg pure-u-1 pure-u-md-1-2">
<%= raw event.description %>
<% if event.talks %>
<p>
Presentations:
</p>
<ul>
<% for talk in event.talks %>
<li>
<% if talk.is_placeholder %>
More talks TBA
<% else %>
<%= talk.title %> (<%= talk.speaker.name %>)
<% end %>
</li>
<% end %>
</ul>
<% end %>
</div>
<div class="l-box-lrg pure-u-1 pure-u-md-1-2 signupform">
<a href="<%= event.file %>.html" class="pure-button">Go to event page</a>
</div>
</div>