2024-09-14 15:57:43 +00:00
|
|
|
{% if related and zets %}
|
|
|
|
<section>
|
|
|
|
<h2>Related</h2>
|
|
|
|
|
|
|
|
<ul>
|
|
|
|
{% for zet in zets if related|filter((title) => title == zet.title) %}
|
|
|
|
<li>
|
2024-09-14 16:05:29 +00:00
|
|
|
<a href="{{ zet.url|trim('/', 'right') }}">{{ zet.title }}</a>
|
2024-09-14 15:57:43 +00:00
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
</section>
|
|
|
|
{% endif %}
|