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/interaction.liquid

23 lines
No EOL
627 B
Text

{%- capture title %}
{% if type == 'repost-of' %}
Reposts
{% elsif type == 'like-of' %}
Likes
{% endif %}
{% endcapture -%}
{% if mentions[type].size > 0 %}
<h2>{{ title }}</h2>
<div class="interaction flex--centered">
{% for mention in mentions[type] %}
<a href={{mention.url}}>
<div class="avatar__wrapper flex--centered">
<img
src="{{ mention.author.photo }}"
alt="{{ mention.author.name }}"
class="avatar__image"
onerror="this.onerror=null; this.src='/assets/img/icons/user.webp'" />
</div>
</a>
{% endfor %}
</div>
{% endif %}