61 lines
No EOL
2.9 KiB
Text
61 lines
No EOL
2.9 KiB
Text
{% if webmentions %}
|
|
<div class="border-t border-gray-200 mt-12 pt-14 dark:border-gray-700">
|
|
{% assign mentions = webmentions.mentions | webmentionsByUrl: page.url %}
|
|
{% if mentions['repost-of'].size > 0 %}
|
|
<h2 class="text-lg md:text-xl font-black leading-tight dark:text-gray-200">Reposts</h2>
|
|
<div class="flex flex-row items-center mt-4 mb-6">
|
|
<ul class="ml-3 flex flex-row flex-wrap">
|
|
{% for mention in mentions['repost-of'] %}
|
|
<li class="-ml-3 inline">
|
|
<a href={{mention.url}}>
|
|
<img
|
|
src={{mention.author.photo}}
|
|
alt={{mention.author.name}}
|
|
class="bg-gray-900 dark:bg-white h-14 w-14 rounded-full border-4 border-white dark:border-gray-900 transition-all hover:border-primary-500 dark:hover:border-primary-300"
|
|
loading="lazy" />
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
{% endif %}
|
|
{% if mentions['like-of'].size > 0 %}
|
|
<h2 class="text-lg md:text-xl font-black leading-tight dark:text-gray-200">Likes</h2>
|
|
<div class="flex flex-row items-center mt-4 mb-6">
|
|
<ul class="ml-3 flex flex-row flex-wrap">
|
|
{% for mention in mentions['like-of'] %}
|
|
<li class="-ml-3 inline">
|
|
<a href={{mention.url}}>
|
|
<img
|
|
src={{mention.author.photo}}
|
|
alt={{mention.author.name}}
|
|
class="bg-gray-900 dark:bg-white h-14 w-14 rounded-full border-4 border-white dark:border-gray-900 transition-all hover:border-primary-500 dark:hover:border-primary-300"
|
|
loading="lazy" />
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
{% endif %}
|
|
{% if mentions['in-reply-to'].size > 0 %}
|
|
<h2 class="text-lg md:text-xl font-black leading-tight dark:text-gray-200">Comments</h2>
|
|
<div class="mt-4 flex flex-col items-center not-prose">
|
|
{% for mention in mentions['in-reply-to'] %}
|
|
<div class="border-bottom flex flex-row items-center border-gray-100 pb-4 w-full">
|
|
<a class="group flex flex-row space-between items-center" href={{mention.url}}>
|
|
<img
|
|
src={{mention.author.photo}}
|
|
alt={{mention.author.name}}
|
|
class="bg-gray-900 dark:bg-white h-14 w-14 rounded-full border-4 border-white dark:border-gray-900 transition-all group-hover:border-primary-500 dark:group-hover:border-primary-300"
|
|
loading="lazy" />
|
|
<div class="ml-3">
|
|
<p class="text-sm group-hover:text-primary-500 dark:group-hover:text-primary-300">{{ mention.content.text }}</p>
|
|
<p class="mt-1 text-xs group-hover:text-primary-500 dark:group-hover:text-primary-300">{{ mention.published | isoDateOnly }}</p>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
{% endif %} |