all-posts page, page titles, index page

This commit is contained in:
2026-03-30 05:27:41 -04:00
parent 5ffb51d5ce
commit fd8ed38572
6 changed files with 126 additions and 7 deletions

View File

@@ -10,8 +10,8 @@ import { formatDate } from '@lib/datefmt';
export interface Props {
entry: CollectionEntry<'posts'>,
prevSlug: string | null,
nextSlug: string | null,
prevSlug?: string | null,
nextSlug?: string | null,
};
const { entry, prevSlug, nextSlug } = Astro.props;