Astro Editor 1.0.4 includes a build for Windows
Get it here: github.com/dannysmith/a...
I really need some windows folks to test it before I make it official ππ
astroeditor.danny.is
@astro.build #astrojs
Posts by Andrew Kepson
The Golden Gate Bridge in San Francisco
The Golden Gate Bridge
San Francisco seen from the Golden Gate Bridge
Downtown San Francisco
San Francisco a couple of weeks ago
ππ
ikea.com now on Astro.
Heard it was as easy to build as my bookshelf πΈπͺ
Astro is soooo good. Makes React seem like such overkill for basic sites
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...
Hello Bluesky!