archives.html 912 B

123456789101112131415161718192021222324
  1. {% extends "base.html" %}
  2. {% block title %}Archives - {{ SITENAME }}{% endblock %}
  3. {% block breadcrumbs %}
  4. {% if DISPLAY_BREADCRUMBS %}
  5. <ol class="breadcrumb">
  6. <li><a href="{{ SITEURL }}" title="{{ SITENAME }}"><i class="fa fa-home fa-lg"></i></a></li>
  7. <li class="active">Archives</li>
  8. </ol>
  9. {% endif %}
  10. {% endblock %}
  11. {% block content %}
  12. <section id="content">
  13. <h1>Archives for {{ SITENAME }}</h1>
  14. <div id="archives">
  15. {% for article in dates %}
  16. <p>
  17. <span class="categories-timestamp"><time datetime="{{ article.date.isoformat() }}">{{ article.locale_date }}</time></span>
  18. <a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}{% if article.subtitle %} - {{ article.subtitle }}{% endif %}</a>
  19. </p>
  20. {% endfor %}
  21. </div>
  22. </section>
  23. {% endblock %}