gil.ink/src/_includes/snippets/neighbors.njk

11 lines
364 B
Plaintext
Raw Normal View History

2025-05-01 14:24:16 -04:00
<p>
{% for neighbor in neighbors %}
{% if neighbor.link %}
<a href="{{ neighbor.link }}" rel="noreferrer nofollow noopener external" target="_blank">
{% endif %}
<img src="{{ neighbor.image }}" alt="{{ neighbor.label }}"/>
{% if neighbor.link %}
</a>
{% endif %}
{% endfor %}
</p>