1
0

archive_index.html 478 B

1234567891011121314
  1. {% extends "base.html" %}
  2. {% block title %} Archive » oz123.github.com {% 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>{{ entry.published_html }}<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 %}