{%- set likes = webmentions.children | likesForUrl(absoluteUrl) -%} {%- set reposts = webmentions.children | repostsForUrl(absoluteUrl) -%} {% if likes.length > 0 %}

{{ likes.length }} Like{% if likes.length != 1 %}s{% endif %}

{% for webmention in likes %} {% if webmention.url != "" %} {% endif %} {% if webmention.author.photo %} {{ webmention.author.name }} {% else %} {{ webmention.author.name }} {% endif %} {% if webmention.url != "" %} {% endif %} {% endfor %}
{% endif %} {% if reposts.length > 0 %}

{{ reposts.length }} Repost{% if reposts.length != 1 %}s{% endif %}

{% for webmention in reposts %} {% if webmention.url != "" %} {% endif %} {% if webmention.author.photo %} {{ webmention.author.name }} {% else %} {{ webmention.author.name }} {% endif %} {% if webmention.url != "" %} {% endif %} {% endfor %}
{% endif %}