Last active
April 30, 2024 05:38
-
-
Save hamzamu/152923a028e3adcd0db56ca268d7ad95 to your computer and use it in GitHub Desktop.
Astro Markdown.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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