luciaa.at/templates/tag_overview.html

18 lines
531 B
HTML

{% extends "base.html" %}
{% block head_extra %}
<base href="../../">
{% endblock %}
{% block main %}
<h1>overview for tag '{{tag}}'</h1>
<div class="overview">
<div class="entries">
<h1>entries</h1>
<ul>
{% for occurence in occurences %}
<li>{% if occurence.date %}{{occurence.date}}{% else %}date missing{% endif %} - <a href="blog/{{occurence.href}}">{{occurence.heading}}</a></li>
{% endfor %}
</ul>
</div>
<a href="{{overview_backlink}}"><-- go back to general overview</a>
</div>
{% endblock %}