fix: extend youtubeVideoId embed guard to all post types and templates
Build & Deploy / build-and-deploy (push) Successful in 1m56s
Build & Deploy / build-and-deploy (push) Successful in 1m56s
Reposts, bookmarks, replies, and in-reply-to sections were still falling
through to {% unfurl %} for YouTube URLs. Extended the lite-youtube embed
check (youtubeVideoId frontmatter) to every place that renders an external
URL: reply-context.njk (repost/in-reply-to/bookmark), blog.njk (bookmark/
repost/reply branches), reposts.njk, bookmarks.njk, replies.njk, and the
recent-posts and featured-posts homepage widget sections.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -19,7 +19,13 @@
|
|||||||
</svg>
|
</svg>
|
||||||
<span>In reply to:</span>
|
<span>In reply to:</span>
|
||||||
</p>
|
</p>
|
||||||
|
{% if youtubeVideoId %}
|
||||||
|
<div class="video-embed eleventy-plugin-youtube-embed not-prose my-4">
|
||||||
|
<lite-youtube videoid="{{ youtubeVideoId }}" style="background-image: url('https://i.ytimg.com/vi/{{ youtubeVideoId }}/hqdefault.jpg');"><div class="lty-playbtn"></div></lite-youtube>
|
||||||
|
</div>
|
||||||
|
{% else %}
|
||||||
{% unfurl replyTo %}
|
{% unfurl replyTo %}
|
||||||
|
{% endif %}
|
||||||
<a class="u-url text-xs text-surface-600 dark:text-surface-400 hover:underline break-all" href="{{ replyTo }}">
|
<a class="u-url text-xs text-surface-600 dark:text-surface-400 hover:underline break-all" href="{{ replyTo }}">
|
||||||
{{ replyTo }}
|
{{ replyTo }}
|
||||||
</a>
|
</a>
|
||||||
@@ -55,7 +61,13 @@
|
|||||||
</svg>
|
</svg>
|
||||||
<span>Reposted:</span>
|
<span>Reposted:</span>
|
||||||
</p>
|
</p>
|
||||||
|
{% if youtubeVideoId %}
|
||||||
|
<div class="video-embed eleventy-plugin-youtube-embed not-prose my-4">
|
||||||
|
<lite-youtube videoid="{{ youtubeVideoId }}" style="background-image: url('https://i.ytimg.com/vi/{{ youtubeVideoId }}/hqdefault.jpg');"><div class="lty-playbtn"></div></lite-youtube>
|
||||||
|
</div>
|
||||||
|
{% else %}
|
||||||
{% unfurl repostedUrl %}
|
{% unfurl repostedUrl %}
|
||||||
|
{% endif %}
|
||||||
<a class="u-url text-xs text-surface-600 dark:text-surface-400 hover:underline break-all" href="{{ repostedUrl }}">
|
<a class="u-url text-xs text-surface-600 dark:text-surface-400 hover:underline break-all" href="{{ repostedUrl }}">
|
||||||
{{ repostedUrl }}
|
{{ repostedUrl }}
|
||||||
</a>
|
</a>
|
||||||
@@ -70,7 +82,13 @@
|
|||||||
</svg>
|
</svg>
|
||||||
<span>Bookmarked:</span>
|
<span>Bookmarked:</span>
|
||||||
</p>
|
</p>
|
||||||
|
{% if youtubeVideoId %}
|
||||||
|
<div class="video-embed eleventy-plugin-youtube-embed not-prose my-4">
|
||||||
|
<lite-youtube videoid="{{ youtubeVideoId }}" style="background-image: url('https://i.ytimg.com/vi/{{ youtubeVideoId }}/hqdefault.jpg');"><div class="lty-playbtn"></div></lite-youtube>
|
||||||
|
</div>
|
||||||
|
{% else %}
|
||||||
{% unfurl bookmarkedUrl %}
|
{% unfurl bookmarkedUrl %}
|
||||||
|
{% endif %}
|
||||||
<a class="u-url text-xs text-surface-600 dark:text-surface-400 hover:underline break-all" href="{{ bookmarkedUrl }}">
|
<a class="u-url text-xs text-surface-600 dark:text-surface-400 hover:underline break-all" href="{{ bookmarkedUrl }}">
|
||||||
{{ bookmarkedUrl }}
|
{{ bookmarkedUrl }}
|
||||||
</a>
|
</a>
|
||||||
|
|||||||
@@ -59,7 +59,13 @@
|
|||||||
{{ post.date | dateDisplay }}
|
{{ post.date | dateDisplay }}
|
||||||
</time>
|
</time>
|
||||||
</div>
|
</div>
|
||||||
|
{% if post.data.youtubeVideoId %}
|
||||||
|
<div class="video-embed eleventy-plugin-youtube-embed not-prose my-4">
|
||||||
|
<lite-youtube videoid="{{ post.data.youtubeVideoId }}" style="background-image: url('https://i.ytimg.com/vi/{{ post.data.youtubeVideoId }}/hqdefault.jpg');"><div class="lty-playbtn"></div></lite-youtube>
|
||||||
|
</div>
|
||||||
|
{% else %}
|
||||||
{{ likedUrl | unfurlCard | safe }}
|
{{ likedUrl | unfurlCard | safe }}
|
||||||
|
{% endif %}
|
||||||
<a class="u-like-of text-xs text-surface-600 dark:text-surface-400 hover:underline break-all mt-1 inline-block" href="{{ likedUrl }}">
|
<a class="u-like-of text-xs text-surface-600 dark:text-surface-400 hover:underline break-all mt-1 inline-block" href="{{ likedUrl }}">
|
||||||
{{ likedUrl }}
|
{{ likedUrl }}
|
||||||
</a>
|
</a>
|
||||||
@@ -92,7 +98,13 @@
|
|||||||
<a class="text-surface-900 dark:text-surface-100 hover:text-accent-600 dark:hover:text-accent-400 hover:underline" href="{{ post.url }}">{{ post.data.title }}</a>
|
<a class="text-surface-900 dark:text-surface-100 hover:text-accent-600 dark:hover:text-accent-400 hover:underline" href="{{ post.url }}">{{ post.data.title }}</a>
|
||||||
</h3>
|
</h3>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{% if post.data.youtubeVideoId %}
|
||||||
|
<div class="video-embed eleventy-plugin-youtube-embed not-prose my-4">
|
||||||
|
<lite-youtube videoid="{{ post.data.youtubeVideoId }}" style="background-image: url('https://i.ytimg.com/vi/{{ post.data.youtubeVideoId }}/hqdefault.jpg');"><div class="lty-playbtn"></div></lite-youtube>
|
||||||
|
</div>
|
||||||
|
{% else %}
|
||||||
{{ bookmarkedUrl | unfurlCard | safe }}
|
{{ bookmarkedUrl | unfurlCard | safe }}
|
||||||
|
{% endif %}
|
||||||
<a class="u-bookmark-of text-xs text-surface-600 dark:text-surface-400 hover:underline break-all mt-1 inline-block" href="{{ bookmarkedUrl }}">
|
<a class="u-bookmark-of text-xs text-surface-600 dark:text-surface-400 hover:underline break-all mt-1 inline-block" href="{{ bookmarkedUrl }}">
|
||||||
{{ bookmarkedUrl }}
|
{{ bookmarkedUrl }}
|
||||||
</a>
|
</a>
|
||||||
@@ -120,7 +132,13 @@
|
|||||||
{{ post.date | dateDisplay }}
|
{{ post.date | dateDisplay }}
|
||||||
</time>
|
</time>
|
||||||
</div>
|
</div>
|
||||||
|
{% if post.data.youtubeVideoId %}
|
||||||
|
<div class="video-embed eleventy-plugin-youtube-embed not-prose my-4">
|
||||||
|
<lite-youtube videoid="{{ post.data.youtubeVideoId }}" style="background-image: url('https://i.ytimg.com/vi/{{ post.data.youtubeVideoId }}/hqdefault.jpg');"><div class="lty-playbtn"></div></lite-youtube>
|
||||||
|
</div>
|
||||||
|
{% else %}
|
||||||
{{ repostedUrl | unfurlCard | safe }}
|
{{ repostedUrl | unfurlCard | safe }}
|
||||||
|
{% endif %}
|
||||||
<a class="u-repost-of text-xs text-surface-600 dark:text-surface-400 hover:underline break-all mt-1 inline-block" href="{{ repostedUrl }}">
|
<a class="u-repost-of text-xs text-surface-600 dark:text-surface-400 hover:underline break-all mt-1 inline-block" href="{{ repostedUrl }}">
|
||||||
{{ repostedUrl }}
|
{{ repostedUrl }}
|
||||||
</a>
|
</a>
|
||||||
@@ -148,7 +166,13 @@
|
|||||||
{{ post.date | dateDisplay }}
|
{{ post.date | dateDisplay }}
|
||||||
</time>
|
</time>
|
||||||
</div>
|
</div>
|
||||||
|
{% if post.data.youtubeVideoId %}
|
||||||
|
<div class="video-embed eleventy-plugin-youtube-embed not-prose my-4">
|
||||||
|
<lite-youtube videoid="{{ post.data.youtubeVideoId }}" style="background-image: url('https://i.ytimg.com/vi/{{ post.data.youtubeVideoId }}/hqdefault.jpg');"><div class="lty-playbtn"></div></lite-youtube>
|
||||||
|
</div>
|
||||||
|
{% else %}
|
||||||
{{ replyToUrl | unfurlCard | safe }}
|
{{ replyToUrl | unfurlCard | safe }}
|
||||||
|
{% endif %}
|
||||||
<a class="u-in-reply-to text-xs text-surface-600 dark:text-surface-400 hover:underline break-all mt-1 inline-block" href="{{ replyToUrl }}">
|
<a class="u-in-reply-to text-xs text-surface-600 dark:text-surface-400 hover:underline break-all mt-1 inline-block" href="{{ replyToUrl }}">
|
||||||
{{ replyToUrl }}
|
{{ replyToUrl }}
|
||||||
</a>
|
</a>
|
||||||
|
|||||||
@@ -75,7 +75,13 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
{% include "components/garden-badge.njk" %}
|
{% include "components/garden-badge.njk" %}
|
||||||
</div>
|
</div>
|
||||||
|
{% if post.data.youtubeVideoId %}
|
||||||
|
<div class="video-embed eleventy-plugin-youtube-embed not-prose my-4">
|
||||||
|
<lite-youtube videoid="{{ post.data.youtubeVideoId }}" style="background-image: url('https://i.ytimg.com/vi/{{ post.data.youtubeVideoId }}/hqdefault.jpg');"><div class="lty-playbtn"></div></lite-youtube>
|
||||||
|
</div>
|
||||||
|
{% else %}
|
||||||
{{ likedUrl | unfurlCard | safe }}
|
{{ likedUrl | unfurlCard | safe }}
|
||||||
|
{% endif %}
|
||||||
<a class="u-like-of text-xs text-surface-600 dark:text-surface-400 hover:underline break-all mt-1 inline-block" href="{{ likedUrl }}">
|
<a class="u-like-of text-xs text-surface-600 dark:text-surface-400 hover:underline break-all mt-1 inline-block" href="{{ likedUrl }}">
|
||||||
{{ likedUrl }}
|
{{ likedUrl }}
|
||||||
</a>
|
</a>
|
||||||
@@ -120,7 +126,13 @@
|
|||||||
<a class="hover:text-amber-800 dark:hover:text-amber-400" href="{{ post.url }}">{{ post.data.title }}</a>
|
<a class="hover:text-amber-800 dark:hover:text-amber-400" href="{{ post.url }}">{{ post.data.title }}</a>
|
||||||
</h3>
|
</h3>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{% if post.data.youtubeVideoId %}
|
||||||
|
<div class="video-embed eleventy-plugin-youtube-embed not-prose my-4">
|
||||||
|
<lite-youtube videoid="{{ post.data.youtubeVideoId }}" style="background-image: url('https://i.ytimg.com/vi/{{ post.data.youtubeVideoId }}/hqdefault.jpg');"><div class="lty-playbtn"></div></lite-youtube>
|
||||||
|
</div>
|
||||||
|
{% else %}
|
||||||
{{ bookmarkedUrl | unfurlCard | safe }}
|
{{ bookmarkedUrl | unfurlCard | safe }}
|
||||||
|
{% endif %}
|
||||||
<a class="u-bookmark-of text-xs text-surface-600 dark:text-surface-400 hover:underline break-all mt-1 inline-block" href="{{ bookmarkedUrl }}">
|
<a class="u-bookmark-of text-xs text-surface-600 dark:text-surface-400 hover:underline break-all mt-1 inline-block" href="{{ bookmarkedUrl }}">
|
||||||
{{ bookmarkedUrl }}
|
{{ bookmarkedUrl }}
|
||||||
</a>
|
</a>
|
||||||
@@ -160,7 +172,13 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
{% include "components/garden-badge.njk" %}
|
{% include "components/garden-badge.njk" %}
|
||||||
</div>
|
</div>
|
||||||
|
{% if post.data.youtubeVideoId %}
|
||||||
|
<div class="video-embed eleventy-plugin-youtube-embed not-prose my-4">
|
||||||
|
<lite-youtube videoid="{{ post.data.youtubeVideoId }}" style="background-image: url('https://i.ytimg.com/vi/{{ post.data.youtubeVideoId }}/hqdefault.jpg');"><div class="lty-playbtn"></div></lite-youtube>
|
||||||
|
</div>
|
||||||
|
{% else %}
|
||||||
{{ repostedUrl | unfurlCard | safe }}
|
{{ repostedUrl | unfurlCard | safe }}
|
||||||
|
{% endif %}
|
||||||
<a class="u-repost-of text-xs text-surface-600 dark:text-surface-400 hover:underline break-all mt-1 inline-block" href="{{ repostedUrl }}">
|
<a class="u-repost-of text-xs text-surface-600 dark:text-surface-400 hover:underline break-all mt-1 inline-block" href="{{ repostedUrl }}">
|
||||||
{{ repostedUrl }}
|
{{ repostedUrl }}
|
||||||
</a>
|
</a>
|
||||||
@@ -200,7 +218,13 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
{% include "components/garden-badge.njk" %}
|
{% include "components/garden-badge.njk" %}
|
||||||
</div>
|
</div>
|
||||||
|
{% if post.data.youtubeVideoId %}
|
||||||
|
<div class="video-embed eleventy-plugin-youtube-embed not-prose my-4">
|
||||||
|
<lite-youtube videoid="{{ post.data.youtubeVideoId }}" style="background-image: url('https://i.ytimg.com/vi/{{ post.data.youtubeVideoId }}/hqdefault.jpg');"><div class="lty-playbtn"></div></lite-youtube>
|
||||||
|
</div>
|
||||||
|
{% else %}
|
||||||
{{ replyToUrl | unfurlCard | safe }}
|
{{ replyToUrl | unfurlCard | safe }}
|
||||||
|
{% endif %}
|
||||||
<a class="u-in-reply-to text-xs text-surface-600 dark:text-surface-400 hover:underline break-all mt-1 inline-block" href="{{ replyToUrl }}">
|
<a class="u-in-reply-to text-xs text-surface-600 dark:text-surface-400 hover:underline break-all mt-1 inline-block" href="{{ replyToUrl }}">
|
||||||
{{ replyToUrl }}
|
{{ replyToUrl }}
|
||||||
</a>
|
</a>
|
||||||
|
|||||||
@@ -136,7 +136,13 @@ permalink: "blog/{% if pagination.pageNumber > 0 %}page/{{ pagination.pageNumber
|
|||||||
<a class="hover:text-[#b57614] dark:hover:text-[#d79921]" href="{{ post.url }}">{{ post.data.title }}</a>
|
<a class="hover:text-[#b57614] dark:hover:text-[#d79921]" href="{{ post.url }}">{{ post.data.title }}</a>
|
||||||
</h2>
|
</h2>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{% if post.data.youtubeVideoId %}
|
||||||
|
<div class="video-embed eleventy-plugin-youtube-embed not-prose my-4">
|
||||||
|
<lite-youtube videoid="{{ post.data.youtubeVideoId }}" style="background-image: url('https://i.ytimg.com/vi/{{ post.data.youtubeVideoId }}/hqdefault.jpg');"><div class="lty-playbtn"></div></lite-youtube>
|
||||||
|
</div>
|
||||||
|
{% else %}
|
||||||
{% unfurl bookmarkedUrl %}
|
{% unfurl bookmarkedUrl %}
|
||||||
|
{% endif %}
|
||||||
<a class="u-bookmark-of text-xs text-surface-600 dark:text-surface-400 hover:underline break-all mt-1 inline-block" href="{{ bookmarkedUrl }}">
|
<a class="u-bookmark-of text-xs text-surface-600 dark:text-surface-400 hover:underline break-all mt-1 inline-block" href="{{ bookmarkedUrl }}">
|
||||||
{{ bookmarkedUrl }}
|
{{ bookmarkedUrl }}
|
||||||
</a>
|
</a>
|
||||||
@@ -178,7 +184,13 @@ permalink: "blog/{% if pagination.pageNumber > 0 %}page/{{ pagination.pageNumber
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
{% include "components/garden-badge.njk" %}
|
{% include "components/garden-badge.njk" %}
|
||||||
</div>
|
</div>
|
||||||
|
{% if post.data.youtubeVideoId %}
|
||||||
|
<div class="video-embed eleventy-plugin-youtube-embed not-prose my-4">
|
||||||
|
<lite-youtube videoid="{{ post.data.youtubeVideoId }}" style="background-image: url('https://i.ytimg.com/vi/{{ post.data.youtubeVideoId }}/hqdefault.jpg');"><div class="lty-playbtn"></div></lite-youtube>
|
||||||
|
</div>
|
||||||
|
{% else %}
|
||||||
{% unfurl repostedUrl %}
|
{% unfurl repostedUrl %}
|
||||||
|
{% endif %}
|
||||||
<a class="u-repost-of text-xs text-surface-600 dark:text-surface-400 hover:underline break-all mt-1 inline-block" href="{{ repostedUrl }}">
|
<a class="u-repost-of text-xs text-surface-600 dark:text-surface-400 hover:underline break-all mt-1 inline-block" href="{{ repostedUrl }}">
|
||||||
{{ repostedUrl }}
|
{{ repostedUrl }}
|
||||||
</a>
|
</a>
|
||||||
@@ -220,7 +232,13 @@ permalink: "blog/{% if pagination.pageNumber > 0 %}page/{{ pagination.pageNumber
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
{% include "components/garden-badge.njk" %}
|
{% include "components/garden-badge.njk" %}
|
||||||
</div>
|
</div>
|
||||||
|
{% if post.data.youtubeVideoId %}
|
||||||
|
<div class="video-embed eleventy-plugin-youtube-embed not-prose my-4">
|
||||||
|
<lite-youtube videoid="{{ post.data.youtubeVideoId }}" style="background-image: url('https://i.ytimg.com/vi/{{ post.data.youtubeVideoId }}/hqdefault.jpg');"><div class="lty-playbtn"></div></lite-youtube>
|
||||||
|
</div>
|
||||||
|
{% else %}
|
||||||
{% unfurl replyToUrl %}
|
{% unfurl replyToUrl %}
|
||||||
|
{% endif %}
|
||||||
<a class="u-in-reply-to text-xs text-surface-600 dark:text-surface-400 hover:underline break-all mt-1 inline-block" href="{{ replyToUrl }}">
|
<a class="u-in-reply-to text-xs text-surface-600 dark:text-surface-400 hover:underline break-all mt-1 inline-block" href="{{ replyToUrl }}">
|
||||||
{{ replyToUrl }}
|
{{ replyToUrl }}
|
||||||
</a>
|
</a>
|
||||||
|
|||||||
@@ -55,7 +55,13 @@ permalink: "bookmarks/{% if pagination.pageNumber > 0 %}page/{{ pagination.pageN
|
|||||||
{# Support both camelCase (Indiekit Eleventy preset) and underscore (legacy) property names #}
|
{# Support both camelCase (Indiekit Eleventy preset) and underscore (legacy) property names #}
|
||||||
{% set bookmarkedUrl = post.data.bookmarkOf or post.data.bookmark_of %}
|
{% set bookmarkedUrl = post.data.bookmarkOf or post.data.bookmark_of %}
|
||||||
{% if bookmarkedUrl %}
|
{% if bookmarkedUrl %}
|
||||||
|
{% if post.data.youtubeVideoId %}
|
||||||
|
<div class="video-embed eleventy-plugin-youtube-embed not-prose my-4">
|
||||||
|
<lite-youtube videoid="{{ post.data.youtubeVideoId }}" style="background-image: url('https://i.ytimg.com/vi/{{ post.data.youtubeVideoId }}/hqdefault.jpg');"><div class="lty-playbtn"></div></lite-youtube>
|
||||||
|
</div>
|
||||||
|
{% else %}
|
||||||
{% unfurl bookmarkedUrl %}
|
{% unfurl bookmarkedUrl %}
|
||||||
|
{% endif %}
|
||||||
<a class="u-bookmark-of text-xs text-surface-600 dark:text-surface-400 hover:underline break-all mt-1 inline-block" href="{{ bookmarkedUrl }}">
|
<a class="u-bookmark-of text-xs text-surface-600 dark:text-surface-400 hover:underline break-all mt-1 inline-block" href="{{ bookmarkedUrl }}">
|
||||||
{{ bookmarkedUrl }}
|
{{ bookmarkedUrl }}
|
||||||
</a>
|
</a>
|
||||||
|
|||||||
@@ -59,7 +59,13 @@ permalink: "replies/{% if pagination.pageNumber > 0 %}page/{{ pagination.pageNum
|
|||||||
{% set replyTo = post.data.inReplyTo or post.data.in_reply_to %}
|
{% set replyTo = post.data.inReplyTo or post.data.in_reply_to %}
|
||||||
{% if replyTo %}
|
{% if replyTo %}
|
||||||
{% set protocol = replyTo | protocolType %}
|
{% set protocol = replyTo | protocolType %}
|
||||||
|
{% if post.data.youtubeVideoId %}
|
||||||
|
<div class="video-embed eleventy-plugin-youtube-embed not-prose my-4">
|
||||||
|
<lite-youtube videoid="{{ post.data.youtubeVideoId }}" style="background-image: url('https://i.ytimg.com/vi/{{ post.data.youtubeVideoId }}/hqdefault.jpg');"><div class="lty-playbtn"></div></lite-youtube>
|
||||||
|
</div>
|
||||||
|
{% else %}
|
||||||
{% unfurl replyTo %}
|
{% unfurl replyTo %}
|
||||||
|
{% endif %}
|
||||||
<p class="mt-2 text-sm flex items-center gap-2 flex-wrap">
|
<p class="mt-2 text-sm flex items-center gap-2 flex-wrap">
|
||||||
<span class="text-surface-600">In reply to:</span>
|
<span class="text-surface-600">In reply to:</span>
|
||||||
<a class="u-in-reply-to text-xs text-surface-600 dark:text-surface-400 hover:underline break-all" href="{{ replyTo }}">
|
<a class="u-in-reply-to text-xs text-surface-600 dark:text-surface-400 hover:underline break-all" href="{{ replyTo }}">
|
||||||
|
|||||||
@@ -58,7 +58,13 @@ permalink: "reposts/{% if pagination.pageNumber > 0 %}page/{{ pagination.pageNum
|
|||||||
{# Support both camelCase (Indiekit Eleventy preset) and underscore (legacy) property names #}
|
{# Support both camelCase (Indiekit Eleventy preset) and underscore (legacy) property names #}
|
||||||
{% set repostedUrl = post.data.repostOf or post.data.repost_of %}
|
{% set repostedUrl = post.data.repostOf or post.data.repost_of %}
|
||||||
{% if repostedUrl %}
|
{% if repostedUrl %}
|
||||||
|
{% if post.data.youtubeVideoId %}
|
||||||
|
<div class="video-embed eleventy-plugin-youtube-embed not-prose my-4">
|
||||||
|
<lite-youtube videoid="{{ post.data.youtubeVideoId }}" style="background-image: url('https://i.ytimg.com/vi/{{ post.data.youtubeVideoId }}/hqdefault.jpg');"><div class="lty-playbtn"></div></lite-youtube>
|
||||||
|
</div>
|
||||||
|
{% else %}
|
||||||
{% unfurl repostedUrl %}
|
{% unfurl repostedUrl %}
|
||||||
|
{% endif %}
|
||||||
<a class="u-repost-of text-xs text-surface-600 dark:text-surface-400 hover:underline break-all mt-1 inline-block" href="{{ repostedUrl }}">
|
<a class="u-repost-of text-xs text-surface-600 dark:text-surface-400 hover:underline break-all mt-1 inline-block" href="{{ repostedUrl }}">
|
||||||
{{ repostedUrl }}
|
{{ repostedUrl }}
|
||||||
</a>
|
</a>
|
||||||
|
|||||||
Reference in New Issue
Block a user