finishing up the content
[gitmo/moose-website.git] / lib / Moose / Website / Resource / Templates / presentations.tt
CommitLineData
c5fd0670 1[% WRAPPER 'wrapper/sub_page.tt' %]
2
3 <h2>[% loc('presentations header') %]</h2>
4e705bd2 4 <p>[% loc('presentations body') %]</p>
9db2b8f2 5 <ul class="presentations">
c5fd0670 6 [% FOREACH item IN current_page.data %]
9db2b8f2 7 <li class="year">
c5fd0670 8 [% loc(item.year) %]
9 <ul>
10 [% FOREACH presentation IN item.presentations %]
656ceb12 11 <li class="presentation">
12 <a target="_blank" href="[% presentation.url %]">[% presentation.title %]</a>
13 [% IF presentation.video %] (<a target="_blank" href="[% presentation.video %]">video</a>)[% END %]
14 [% IF presentation.podcast %] (<a target="_blank" href="[% presentation.podcast %]">podcast</a>)[% END %]
15 </li>
c5fd0670 16 [% END %]
17 </ul>
18 </li>
19 [% END %]
20 </ul>
21
22[% END %]