Restructuring of file hierachy and cleanup

This commit is contained in:
Lucia Heidecker 2025-07-11 14:13:41 +02:00
parent 5cce32eef3
commit 6ba78c6add
37 changed files with 793 additions and 132 deletions

View file

@ -6,7 +6,7 @@
<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>
<li>{% if entry.date %}{{entry.date}}{% else %}date missing{% endif %} - <a href="blog/{{entry.href}}">{{entry.heading}}</a></li>
{% endfor %}
</ul>
</div>
@ -15,7 +15,7 @@
<h2>tags</h2>
<ul>
{% for tag, occurences in tag_occurences.items() %}
<li><a href="tags/{{tag}}.html">{{tag}}</a> {{occurences|count()}}</li>
<li><a href="blog/tags/{{tag}}.html">{{tag}}</a> {{occurences|count()}}</li>
{% endfor %}
{% endif %}
</ul>