--- import BaseLayout from '../../layouts/BaseLayout.astro'; import { getCollection } from 'astro:content'; const allPosts = (await getCollection('blog', ({ data }) => !data.draft)) .sort((a, b) => b.data.pubDate.valueOf() - a.data.pubDate.valueOf()); // Group by tags for sidebar const allTags = [...new Set(allPosts.flatMap(p => p.data.tags ?? []))].sort(); ---

The Log

{allPosts.length} entries · HPC · homelab · infra · ops