--- import Layout from "@layouts/Layout.astro"; import Header from "@components/Header.astro"; import Card from "@components/Card.astro"; import Footer from "@components/Footer.astro"; import LinkButton from "@components/LinkButton.astro"; import Hr from "@components/Hr.astro"; import getSortedPosts from "@utils/getSortedPosts"; import type { Frontmatter } from "@utils/types"; const posts = await Astro.glob("../contents/*.md"); const sortedPosts = getSortedPosts(posts); ---

Mingalaba

Astro-Paper is a minimal, responsive and SEO-friendly Astro blog theme. This theme is aimed to be accessible out of the box. Light and dark mode are supported by default and additional color schemes can also be configured. See the documentation for more info.



Recent Posts

    { sortedPosts.map( ({ frontmatter }, index) => index < 4 && ( ) ) }
All Posts