Sebastian Marcet df46bd5a0d [smarcet]
* ss3 migration fixes.

Conflicts:

	marketplace/code/model/consultants/ISpokenLanguage.php
2014-11-24 14:05:12 -03:00

46 lines
1.4 KiB
Scheme

<div class="container">
<!-- Start Videos -->
<% loop Presentations.GroupedBy(PresentationDay) %>
<div class="row">
<div class="col-lg-12">
<h2 id="day-{$Pos}">$PresentationDay</h2>
</div>
</div>
<div class="row">
<% loop Children %>
<!-- Video Block -->
<% if YouTubeID %>
<div class="col-lg-3 col-md-3 col-sm-3 video-block">
<a href="{$Top.Link}presentation/{$URLSegment}">
<div class="video-thumb">
<div class="thumb-play"></div>
<img class="video-thumb-img" src="//img.youtube.com/vi/{$YouTubeID}/0.jpg">
</div>
<p class="video-thumb-title">
$Name
</p>
<p class="video-thumb-speaker">
$Speakers
</p>
</a>
</div>
<% end_if %>
<% if MultipleOf(4) %>
</div>
<div class="row">
<% end_if %>
<% if Last %>
</div>
<% end_if %>
<% end_loop %>
<% end_loop %>
</div>
</div>
<!-- End Videos -->