Extract includes for links, tags and related posts

This commit is contained in:
Oliver Davies 2024-09-14 14:08:27 +01:00
parent 5baae90010
commit e70d8c6f1f
4 changed files with 38 additions and 30 deletions

View file

@ -0,0 +1,9 @@
{% if links is not empty %}
<h2>Links</h2>
<ul>
{% for url in links %}
<li><a href="{{ url }}">{{ url }}</a></li>
{% endfor %}
</ul>
{% endif %}