9 lines
537 B
Text
9 lines
537 B
Text
{% if webmentions %}
|
|
<div class="border-t border-gray-200 mt-12 pt-12 dark:border-gray-700">
|
|
{% assign mentions = webmentions.mentions | webmentionsByUrl: page.url %}
|
|
{% render "partials/webmentions/interaction.liquid", mentions: mentions, type: 'repost-of' %}
|
|
{% render "partials/webmentions/interaction.liquid", mentions: mentions, type: 'like-of' %}
|
|
{% render "partials/webmentions/comments.liquid", mentions: mentions %}
|
|
{% render "partials/webmentions/links.liquid", mentions: mentions %}
|
|
</div>
|
|
{% endif %}
|