--- export const prerender = false; import Base from '../layouts/Base.astro'; import Header from '../components/layout/Header.astro'; import Footer from '../components/layout/Footer.astro'; import PostCard from '../components/content/PostCard.astro'; import { getLiveCollection } from 'astro:content'; const feedResult = await getLiveCollection('feed'); const mergedPosts = (feedResult.entries ?? []) .map((entry) => entry.data) .sort((a, b) => (b.publishedAt ?? b.sharedAt).getTime() - (a.publishedAt ?? a.sharedAt).getTime()); ---

Community content

Blog posts and articles shared by community members across the Atmosphere. Content is aggregated from the atmosphere.community Offprint and community accounts via OpenSocial.

{mergedPosts.length > 0 ? (
{mergedPosts.map((post) => )}
) : (

No community content yet. Visit the blog or share content via your community account.

)}