Move all files to zet-old/

This commit is contained in:
Oliver Davies 2025-10-02 00:53:28 +01:00
parent e1badc9fd5
commit 29d11fa9b9
60 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,13 @@
{% if related and zets %}
<section>
<h2>Related</h2>
<ul>
{% for zet in zets if related|filter((title) => title == zet.title) %}
<li>
<a href="{{ zet.url|trim('/', 'right') }}">{{ zet.title }}</a>
</li>
{% endfor %}
</ul>
</section>
{% endif %}