Skip to content

Instantly share code, notes, and snippets.

@hackintoshrao
Created October 7, 2021 16:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hackintoshrao/08df3c6fbd3b034226f12d9514924ec7 to your computer and use it in GitHub Desktop.
Save hackintoshrao/08df3c6fbd3b034226f12d9514924ec7 to your computer and use it in GitHub Desktop.
---
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