--- import BlogPost from '../components/BlogPost.astro'; import HeadCommon from '../components/HeadCommon.astro'; import HeadSEO from '../components/HeadSEO.astro'; import Header from '../components/Header/Header.astro'; import LeftSidebar from '../components/LeftSidebar/LeftSidebar.astro'; import PageContent from '../components/PageContent/PageContent.astro'; import RightSidebar from '../components/RightSidebar/RightSidebar.astro'; import { getCollection } from 'astro:content'; import { compareDesc } from 'date-fns'; import 'react-lite-youtube-embed/dist/LiteYouTubeEmbed.css'; const currentPage = Astro.url.pathname; const posts = (await getCollection('blog')).sort((a, b) => compareDesc(a.data.date, b.data.date)); --- 🌀 Strudel Blog

Strudel Blog

Welcome to the Strudel Blog, where we will keep you updated with the latest changes and things happening in the strudelsphere. You can subscribe to this blog using this rss link

{posts.map((post) => )}