Files
neocities/_includes/footer.html
2025-08-24 16:05:27 +02:00

30 lines
703 B
HTML

<footer>
<div class="footerdiv">
<ul class="mylinks">
{% for link in site.data.links %}
<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>
{% assign image_files = site.static_files | where: "buttons", true %}
{% for button in image_files %}
{% if button.basename == "88x31" %}
<a href="https://cyber.dabamos.de/88x31/index.html"><img src="{{ button.path }}"></a>
{% else %}
<img src="{{ button.path }}">
{% endif %}
{% endfor %}
</div>
</footer>