alpha
Login
or
Join now
flo-bit.dev
/
blog-template
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
[READ-ONLY] Mirror of https://github.com/flo-bit/blog-template. minimalistic astro blog template
flo-bit.dev/blog-template/
astro
blog
template
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
hotfix
author
Florian
date
2 years ago
(Dec 2, 2024, 3:13 PM +0100)
commit
8658ad73
8658ad733d4f7dabc2210ca48b611eec0d19600f
parent
460a8ac3
460a8ac3d0e7f639ee384c977e7cf0485133c296
+6
-1
1 changed file
Expand all
Collapse all
Unified
Split
src
components
bluesky
BlueskyLikes.astro
+6
-1
src/components/bluesky/BlueskyLikes.astro
View file
Reviewed
···
56
56
57
57
{
58
58
!disableComments ? (
59
59
-
<Comments uri={post?.data.uri} comments={comments} client:idle />
59
59
+
<Comments
60
60
+
uri={post?.data.uri}
61
61
+
comments={comments}
62
62
+
user={BLUESKY_IDENTIFIER}
63
63
+
client:idle
64
64
+
/>
60
65
) : null
61
66
}