Skip to content

Commit

Permalink
fix: webmentions sender
Browse files Browse the repository at this point in the history
Signed-off-by: EINDEX <snowstarlbk@gmail.com>
  • Loading branch information
EINDEX committed May 8, 2023
1 parent 929cc4f commit 041f30f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/posts/[slug].astro
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,6 @@ const { Content } = await post.render();
/>
<article class="h-entry">
{post.data.cover ? <img class="u-photo" alt={post.data.title} src={post.data.cover} /> : <></>}
<a href="https://brid.gy/publish/mastodon"></a>
<a class="u-bridgy-fed" href="https://fed.brid.gy/"></a>
<InvisableAuthor />
{post.data.section || <span class="series p-category">{t(post.data.section)}</span>}
<h1 class="title p-name">
Expand All @@ -72,6 +70,8 @@ const { Content } = await post.render();
<section
class="main e-content format dark:format-invert format-pre:m-0 format-pre:p-2 format-li:list-disc list-disc"
>
<a href="https://brid.gy/publish/mastodon"></a>
<a class="u-bridgy-fed" href="https://fed.brid.gy/"></a>
<Content components={{ pre: Code, a: MentionA, link: MentionA }} />
</section>
<WMStatus slug={`/posts/${slug}`} />
Expand Down

0 comments on commit 041f30f

Please sign in to comment.