list_post.tmpl 416 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 post in posts:
  9. <li><a href="${post.permalink()}">[${post.formatted_date(date_format)}] ${post.title()}</a>
  10. % endfor
  11. </ul>
  12. </div>
  13. <!--End of body content-->
  14. </%block>