archives.html 819 B

1234567891011121314151617181920212223242526
  1. {% extends "base.html" %}
  2. {% block title %}
  3. All Posts - {{ super() }}
  4. {% endblock title %}
  5. {% block content %}
  6. <div class="row-fluid">
  7. <header class="page_header span10 offset2">
  8. <h1><a href="/archives.html">All Posts</a></h1>
  9. </header>
  10. </div>
  11. <div class="row-fluid">
  12. <div class="span8 offset2">
  13. <ul class="list-all-articles">
  14. {% for article in dates %}
  15. <li><a href="/{{ article.url }}">{{ article.title }}</a>
  16. <time datetime="{{ article.date }}">{{ article.locale_date }}</time>
  17. </li>
  18. {% endfor %}
  19. </ul>
  20. </div>
  21. </div>
  22. {% endblock content %}