fix formatting

This commit is contained in:
2025-11-24 10:22:06 -05:00
parent e181c735b8
commit 321aa058ed
41 changed files with 776 additions and 767 deletions
+12 -12
View File
@@ -1,26 +1,26 @@
---
import type { CollectionEntry } from "astro:content";
import BlogHeader from "./BlogHeader.astro";
import Tags from "./Tags.astro";
import type { CollectionEntry } from 'astro:content';
import BlogHeader from './BlogHeader.astro';
import Tags from './Tags.astro';
interface Props {
post: CollectionEntry<"blog">;
post: CollectionEntry<'blog'>;
}
const { post } = Astro.props;
---
<article>
<BlogHeader title={post.data.title} date={post.data.pubDate} slug={post.id} />
<Tags tags={post.data.tags} />
<BlogHeader title={post.data.title} date={post.data.pubDate} slug={post.id} />
<Tags tags={post.data.tags} />
</article>
<style lang="scss">
article {
padding-bottom: 20px;
article {
padding-bottom: 20px;
&:not(:first-child) {
border-top: var(--border);
}
}
&:not(:first-child) {
border-top: var(--border);
}
}
</style>