Created
October 7, 2021 16:34
-
-
Save hackintoshrao/08df3c6fbd3b034226f12d9514924ec7 to your computer and use it in GitHub Desktop.
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
--- | |
export interface Props { | |
post: any; | |
} | |
const { post } = Astro.props; | |
--- | |
<article class="post-preview"> | |
<header> | |
<h3 class="publish-date">{post.publishDate}</h3> | |
<a href={post.url}><h1 class="title">{post.title}</h1></a> | |
</header> | |
<main> | |
<p>{post.description}</p> | |
<a href={post.url}>Read more</a> | |
</main> | |
</article> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment