Skip to content

Instantly share code, notes, and snippets.

@hamzamu
Last active April 30, 2024 05:38
Show Gist options
  • Save hamzamu/152923a028e3adcd0db56ca268d7ad95 to your computer and use it in GitHub Desktop.
Save hamzamu/152923a028e3adcd0db56ca268d7ad95 to your computer and use it in GitHub Desktop.
Astro Markdown.
---
import Layout from "../layouts/Layout.astro";
import * as myPost from "../content/pages/about.md";
---
<Layout>
<div class="text-right rtl leading-8">
<h1 class="text-3xl">{myPost.frontmatter.title}</h1>
<myPost.Content />
</div>
</Layout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment