--- 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.

Hi, I'm a theme for Astro, an example of how you can use this starter to create a personal blog. If you want to know more about how you can customise me, add more posts, and make it your own, click on one of the social links which will take you to my repo.



Recent Posts

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