archives.html 1.0 KB

123456789101112131415161718192021222324252627282930
  1. {% extends "base.html" %}
  2. {% block title %}
  3. All Posts - {{ super() }}
  4. {% endblock title %}
  5. {% block head_description %}
  6. Full archives of {{ SITENAME|striptags }} blog.
  7. {% endblock head_description %}
  8. {% block content %}
  9. <div class="row-fluid">
  10. <header class="page_header span10 offset2">
  11. <h1><a href="/archives.html">All Posts</a></h1>
  12. </header>
  13. </div>
  14. <div class="row-fluid">
  15. <div class="span8 offset2">
  16. <ul class="list-all-articles">
  17. {% for article in dates %}
  18. <li><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }} {%if article.subtitle %} <small> {{ article.subtitle }} </small> {% endif %} </a>
  19. <time pubdate="pubdate" datetime="{{ article.date.isoformat() }}">{{ article.locale_date }}</time>
  20. </li>
  21. {% endfor %}
  22. </ul>
  23. </div>
  24. </div>
  25. {% endblock content %}