fixing the missing i18n elements for daxim++
[gitmo/moose-website.git] / lib / Moose / Website / Resource / Templates / presentations.tt
1 [% WRAPPER 'wrapper/root.tt' %]
2
3     [% loc('presentations body') %]
4     <ul class="presentations">
5     [% FOREACH item IN current_page.data %]
6         <li class="year">
7             [% loc(item.year) %]
8             <ul>
9                 [% FOREACH presentation IN item.presentations %]
10                     <li class="presentation">
11                         <a href="[% presentation.url %]">[% presentation.title.$locale %]</a>
12                         [% IF presentation.video   %] (<a href="[% presentation.video %]">[% loc('presentations video label') %]</a>)[% END %]
13                         [% IF presentation.podcast %] (<a href="[% presentation.podcast %]">[% loc('presentations podcast label') %]</a>)[% END %]
14                     </li>
15                 [% END %]
16             </ul>
17         </li>
18     [% END %]
19     </ul>
20
21 [% END %]