Commit | Line | Data |
91d99a11 |
1 | [% WRAPPER 'wrapper/root.tt' %] |
c5fd0670 |
2 | |
c24d5391 |
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 %]">video</a>)[% END %] |
13 | [% IF presentation.podcast %] (<a href="[% presentation.podcast %]">podcast</a>)[% END %] |
14 | </li> |
15 | [% END %] |
16 | </ul> |
17 | </li> |
18 | [% END %] |
19 | </ul> |
c5fd0670 |
20 | |
21 | [% END %] |