24 lines
631 B
HTML
24 lines
631 B
HTML
{% extends "base.html" %}
|
|
{% block main %}
|
|
<h1>lucia's blog overview</h1>
|
|
<div class="overview">
|
|
<div class="entries">
|
|
<h2>entries</h2>
|
|
<ul>
|
|
{% for entry in blog_data %}
|
|
<li>{% if entry.date %}{{entry.date}}{% else %}date missing{% endif %} - <a href="{{entry.href}}">{{entry.heading}}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
<div class="tags">
|
|
{% if tag_occurences %}
|
|
<h2>tags</h2>
|
|
<ul>
|
|
{% for tag, occurences in tag_occurences.items() %}
|
|
<li><a href="tags/{{tag}}.html">{{tag}}</a> {{occurences|count()}}</li>
|
|
{% endfor %}
|
|
{% endif %}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|