This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
coryd.dev-eleventy/src/_includes/partials/webmentions/links.liquid
2023-12-28 08:28:31 -08:00

14 lines
No EOL
309 B
Text

{% if mentions['link-to'].size > 0 %}
<h2>Links</h2>
<div class="interaction__wrapper">
<ul>
{% for mention in mentions['link-to'] %}
<li>
<a href="{{ mention.url }}">
{{ mention.name }}
</a>
</li>
{% endfor %}
</ul>
</div>
{% endif %}