All checks were successful
deploy to neocities / Build and deploy Jekyll site (push) Successful in 21s
34 lines
830 B
HTML
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>
|
|
|
|
|