SQLite
Posts by ibrahim
thats looks very good 🥳
HBD 🥳
deno compile 🥳
🥳
like it 👍
street coder okumayı isterim. todo ya eklendi :D
Elinize sağlık.
congrats 🎉
testing on production?
www.ibrahimo.dev
Save Page Now
Save Page Now is back online via the Wayback Machine: web.archive.org/save
Web pages archived since October 9 will start being added to the Wayback Machine.
import { authorFeedLoader } from "@ascorbic/bluesky-loader"; const posts = defineCollection({ loader: authorFeedLoader({ identifier: "mk.gg", }), }); export const collections = { posts };
--- import { getCollection } from "astro:content"; const posts = await getCollection("posts"); --- <div> { posts.map(async (post) => { const { Content } = await render(post); return ( <section> <Content /> <p>{post.data.likeCount} likes</p> </section> ); }) } </div>
Would you like to display your Bluesky posts in your Astro site? I've made an Astro content loader for Bluesky! When you build the site it loads your posts and puts them in a content collection. You can then display them on a page, or use the raw data however you want.
github.com/ascorbic/ast...