TemplateToolkit
1

[%- INCLUDE template.header title = 'Index' -%]
[%- USE date -%]

  <ul>
[% FOREACH time = times -%]
   <li>
    <a href="?start=[% time.time | uri | html %]&amp;count=1" rel="bookmark"
       title="[% time.age WRAPPER dictionary section="age" | html %]">[% date.format(time.time, '%Y-%m-%d %H:%M UTC') | html %]</a>:
    [% time.title | html %]
   </li>
[% END -%]
  </ul>

[% INCLUDE template.footer %]