Files
neocities/_includes/footer.html
bvanroll 77de4035db
All checks were successful
deploy to neocities / Build and deploy Jekyll site (push) Successful in 28s
cleanup
2025-08-24 16:40:44 +02:00

34 lines
810 B
HTML

<footer>
<div class="footerdiv">
<p>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>