All checks were successful
deploy to neocities / Build and deploy Jekyll site (push) Successful in 37s
20 lines
505 B
HTML
20 lines
505 B
HTML
<footer>
|
|
<ul class="mylinks">
|
|
{% for link in site.data.links %}
|
|
<li><a href="{{ link.href }}" {{link.otherparams}}>{{ link.name }}</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 %}
|
|
</footer>
|
|
|
|
|