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

11 lines
386 B
Plaintext
Raw Normal View History

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