zet.oliverdavies.uk/source/_includes/zets/related.html.twig

14 lines
300 B
Twig
Raw Normal View History

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 %}