24 lines
No EOL
763 B
Text
24 lines
No EOL
763 B
Text
{%- assign shareLink = postUrl | findPost: linkPosts -%}
|
|
{%- if shareLink %}
|
|
<script type="module" src="/assets/scripts/components/mastodon-post.js"></script>
|
|
<template id="mastodon-post-template">
|
|
<div class="mastodon-post-wrapper">
|
|
<blockquote data-key="content"></blockquote>
|
|
<dl>
|
|
<dt>{% tablericon "refresh" "Reposts" %}</dt>
|
|
<dd data-key="reblogs_count"></dd>
|
|
<dt>{% tablericon "message-circle" "Replies" %}</dt>
|
|
<dd data-key="replies_count"></dd>
|
|
<dt>{% tablericon "star" "Favorites" %}</dt>
|
|
<dd data-key="favourites_count"></dd>
|
|
</dl>
|
|
</div>
|
|
</template>
|
|
<span class="client-side">
|
|
<mastodon-post>
|
|
<a href="{{ shareLink }}">
|
|
Discuss on Mastodon
|
|
</a>
|
|
</mastodon-post>
|
|
</span>
|
|
{% endif -%} |