img stuff

This commit is contained in:
2025-08-24 12:33:05 +02:00
parent 728833829d
commit 4b651e64f5
13 changed files with 11 additions and 1 deletions

View File

@@ -1,7 +1,15 @@
<footer>
<ul class="mylinks">
{% for link in site.data.links %}
<li><a href="{{ link.href }}" {{link.otherparams}}>{{ link.name }}</a></li>
<li>
<a href="{{ link.href }}" {{link.otherparams}}>
{% if link.img %}
<img src="{{ link.img }}" alt="{{ link.alt }}">
{% else %}
{{ link.name }}
{% endif %}
</a>
</li>
{% endfor %}
</ul>