archive_index.html 491 B

1234567891011121314
  1. {% extends "base.html" %}
  2. {% block title %} Archive » {{ site_url }} {% endblock %}
  3. {% block content %}
  4. <div class="archive index">
  5. <h2>This is an archive of everything posted here ...</h2>
  6. {% for entry in entries %}
  7. <p class="post">{{ entry.publish_date}} <a title="../{{ entry.permalink }}" href="../{{entry.permalink}}">{{entry.title }}</a></p>
  8. {% endfor %}
  9. </div>
  10. {% endblock content %}
  11. {% block body %}
  12. {{ super() }}
  13. {% set static_prefix = "../../" %}
  14. {% endblock body %}