list.tmpl 364 B

1234567891011121314
  1. ## -*- coding: utf-8 -*-
  2. <%inherit file="base.tmpl"/>
  3. <%block name="content">
  4. <!--Body content-->
  5. <div class="postbox">
  6. <h1>${title}</h1>
  7. <ul class="unstyled">
  8. % for text, link in items:
  9. <li><a href="${link}">${text}</a>
  10. % endfor
  11. </ul>
  12. </div>
  13. <!--End of body content-->
  14. </%block>