This repository has been archived on 2025-03-28. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
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 %}