35 lines
802 B
HTML
35 lines
802 B
HTML
{% extends "base.html" %}
|
|
{% block head %}
|
|
<link rel="alternate" type="application/atom+xml" title="{{ settings.SITENAME }}" href="/atom.xml" />
|
|
<title>{{ settings.SITENAME }}</title>
|
|
{% if week_background %}
|
|
<style>
|
|
body {
|
|
background: {{ week_background }};
|
|
}
|
|
</style>
|
|
<script>
|
|
window.useHue = true;
|
|
</script>
|
|
{% endif %}
|
|
{% endblock %}
|
|
{% block content %}
|
|
<div class="index">
|
|
{% if break %}
|
|
<div class="break">
|
|
<div>
|
|
{{ break.break_notice | safe }}
|
|
</div>
|
|
</div>
|
|
{% else %}
|
|
{% for item in items %}
|
|
{% include "listitem.html" with item=item %}
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% if archive %}
|
|
<div class="archive">
|
|
<a href="{{ archive }}">previous weeks</a>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
{% endblock %}
|