phantasmobile/app/templates/index.html
2025-01-31 16:29:27 +05:30

25 lines
654 B
HTML

{% extends "base.html" %}
{% block head %}
<link rel="alternate" type="application/atom+xml" title="{{ settings.SITENAME }}" href="/atom.xml" />
<title>{{ settings.SITENAME }}</title>
{% 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 %}