Restructuring of file hierachy and cleanup

This commit is contained in:
Lucia Zehentner 2025-04-04 03:50:51 +02:00
parent de1f8ebfa2
commit 651b8b581f
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>