This commit is contained in:
Oliver Davies 2025-10-02 07:58:12 +01:00
parent 247ff913b3
commit b96f5b114c
60 changed files with 0 additions and 0 deletions

View file

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