{% extends "base.html" %}
{% block title %} Archive » oz123.github.com {% endblock %}
{% block content %}
<div class="archive index">
<h2>This is an archive of everything posted here ...</h2>
  {% for entry in entries %}
    <p>{{ entry.published_html }}<a title="{{ entry.permalink }}" href="{{entry.permalink}}"> {{ entry.title }}</a></p>
  {% endfor %}
</div>
{% endblock content %}
{% block body %}
{{ super() }}
{% set static_prefix = "../../" %}
{% endblock body %}