ruds.io-old/src/layouts/PostLayout.astro
Rudra Saraswat 16dba10451
Some checks failed
Deploy to GitHub Pages / build (push) Has been cancelled
Deploy to GitHub Pages / deploy (push) Has been cancelled
feat: initial commit
2025-05-30 00:12:32 +01:00

16 lines
399 B
Text

---
import BaseLayout from './BaseLayout.astro';
const pageTitle = 'blog';
const { frontmatter } = Astro.props;
---
<BaseLayout pageTitle='blog' pageCustomTitle={frontmatter.title}>
<div style="text-align: left">
<h3>{frontmatter.title}</h3>
<p>Published on {frontmatter.pubDate.toString().slice(0,10)}.</p>
<p><em>{frontmatter.description}</em></p>
<hr>
<slot />
</div>
</BaseLayout>