Files
neocities/_includes/footer.html
bvanroll 5f6a027c46
All checks were successful
deploy to neocities / Build and deploy Jekyll site (push) Successful in 21s
ok
2025-08-24 16:50:48 +02:00

34 lines
830 B
HTML

<footer>
<div class="footerdiv">
<p class="footertitle">mylinks:</p>
<ul class="mylinks">
{% for link in site.data.links %}
<li class="footerlinks">
<a href="{{ link.href }}" {{link.otherparams}}>
{% if link.img %}
<img src="{{ link.img }}" alt="{{ link.alt }}">
{% else %}
{{ link.name }}
{% endif %}
</a>
</li>
{% endfor %}
</ul>
<ul class="mybuttons">
{% assign image_files = site.static_files | where: "buttons", true %}
{% for button in image_files %}
<li class="button">
{% if button.basename == "88x31" %}
<a href="https://cyber.dabamos.de/88x31/index.html"><img src="{{ button.path }}"></a>
{% else %}
<img src="{{ button.path }}">
{% endif %}
</li>
{% endfor %}
</ul>
</div>
</footer>