2023-07-15 07:30:36 +00:00
|
|
|
{% extends "base.html" %}
|
2023-07-25 19:03:54 +00:00
|
|
|
{% block head %}
|
|
|
|
<link rel="alternate" type="application/atom+xml" title="{{ settings.SITENAME }}" href="/atom.xml" />
|
2023-08-17 10:04:23 +00:00
|
|
|
<title>{{ settings.SITENAME }}</title>
|
2023-07-25 19:03:54 +00:00
|
|
|
{% endblock %}
|
2023-07-15 07:30:36 +00:00
|
|
|
{% block content %}
|
2023-07-16 05:56:14 +00:00
|
|
|
<div class="index">
|
2023-07-15 07:30:36 +00:00
|
|
|
{% for item in items %}
|
2023-07-16 05:56:14 +00:00
|
|
|
{% include "listitem.html" with item=item %}
|
2023-07-15 07:30:36 +00:00
|
|
|
{% endfor %}
|
|
|
|
{% if archive %}
|
2023-07-16 05:56:14 +00:00
|
|
|
<div class="archive">
|
2023-08-23 12:44:37 +00:00
|
|
|
<a href="{{ archive }}">previous weeks</a>
|
2023-07-16 05:56:14 +00:00
|
|
|
</div>
|
2023-07-15 07:30:36 +00:00
|
|
|
{% endif %}
|
2023-07-16 05:56:14 +00:00
|
|
|
</div>
|
2023-07-15 07:30:36 +00:00
|
|
|
{% endblock %}
|