adding more stuff, cleaning stuff up, etc etc etc
[gitmo/moose-website.git] / lib / Moose / Website / Resource / Templates / articles.tt
CommitLineData
7476895d 1[% WRAPPER 'wrapper/sub_page.tt' %]
2
5efab74a 3 <h2>[% loc('articles header') %]</h2>
4e705bd2 4 <p>[% loc('articles body') %]</p>
7476895d 5 <ul>
6 [% FOREACH item IN current_page.data %]
7 <li>
8 [% loc(item.year) %]
9 <ul>
10 [% FOREACH article IN item.articles %]
11 <li><a href="[% article.url %]">[% article.title %]</a></li>
12 [% END %]
13 </ul>
14 </li>
15 [% END %]
16 </ul>
17
18[% END %]