diff --git a/src/components/HR.astro b/src/components/HR.astro
index b14c614..6fe158a 100644
--- a/src/components/HR.astro
+++ b/src/components/HR.astro
@@ -1,5 +1,9 @@
---
+const p = Astro.props;
+
+const hrClass = "flex-grow w-auto self-baseline h-1 border-t border-crusta-200 dark:border-night-800 m-4 " + p.class;
+
---
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/src/pages/archives/[...slug].astro b/src/pages/archives/[...slug].astro
new file mode 100644
index 0000000..f673db6
--- /dev/null
+++ b/src/pages/archives/[...slug].astro
@@ -0,0 +1,19 @@
+---
+export const prerender = true;
+
+import {getCollection} from 'astro:content'
+
+export async function getStaticPaths() {
+ const archives = await getCollection('archives');
+ return archives.map(p => ({
+ params: { slug: p.slug }, props: { p },
+ }));
+}
+
+const { p } = Astro.props;
+const { Content } = await p.render();
+
+---
+
+
+
diff --git a/src/pages/blog.astro b/src/pages/blog.astro
index 143df72..475f095 100644
--- a/src/pages/blog.astro
+++ b/src/pages/blog.astro
@@ -46,7 +46,7 @@ const archives = await getCollection('archives');
console.log(toZonedTime(post.data.date, timeZone));
return (
- {post.data.title}
+ {post.data.title}
{format(toZonedTime(post.data.date, timeZone), 'LLL d, yyyy')}
{post.data.summary}
diff --git a/src/styles/markdown.css b/src/styles/markdown.css
index df1c97b..eb4e762 100644
--- a/src/styles/markdown.css
+++ b/src/styles/markdown.css
@@ -36,47 +36,50 @@
}
-article > h1 {
- @apply text-3xl font-serif font-bold text-title mb-3 mt-1
-}
-article > h2 {
- @apply text-2xl font-serif font-semibold text-title mb-2
-}
-article > h3 {
- @apply text-xl font-serif text-title mb-2
-}
-article > h4 {
- @apply text-lg font-serif italic text-title mb-2
-}
-article > p {
- @apply text-black dark:text-night-100 mb-2
-}
-article > p > a,
-article > ul > li > a,
-article > ol > li > a {
- @apply font-serif text-subtitle text-sm hover:underline data-[level=two]:pl-2 data-[level=three]:pl-4
-}
-article > blockquote {
- @apply p-4 border-s-4 text-muted-foreground bg-muted
-}
-article > pre {
- @apply p-2 bg-neutral-300 bg-opacity-50 dark:bg-slate-800 dark:bg-opacity-100 rounded-lg font-mono overflow-y-scroll mb-2
-}
-article > p > code {
- @apply px-1 bg-neutral-300 bg-opacity-50 dark:bg-slate-600 dark:bg-opacity-100 rounded-md font-mono
-}
-article > pre > code {
- @apply px-0 bg-transparent rounded-none
-}
-article > ul {
- @apply p-2 pl-4 mb-2 list-disc text-black dark:text-night-100
-}
-article > ol {
- @apply ml-2 p-2 pl-4 mb-2 list-decimal text-black dark:text-night-100
-}
-article > li {
- @apply mb-1
-}
-article > img {
- @apply relative -z-10 border-4 border-crusta-200 dark:border-night-800 rounded-lg shadow-lgr shadow-crusta-400/20 dark:shadow-night-400/50 my-2
+article {
+ h1 {
+ @apply text-3xl font-serif font-bold text-title mb-3 mt-1
+ }
+ h2 {
+ @apply text-2xl font-serif font-semibold text-title mb-2
+ }
+ h3 {
+ @apply text-xl font-serif text-title mb-2
+ }
+ h4 {
+ @apply text-lg font-serif italic text-title mb-2
+ }
+ p {
+ @apply text-black dark:text-night-100 mb-2
+ }
+ a,
+ p > a,
+ ul > li > a,
+ ol > li > a {
+ @apply font-serif text-subtitle text-sm hover:underline data-[level=two]:pl-2 data-[level=three]:pl-4
+ }
+ blockquote {
+ @apply p-4 border-s-4 text-muted-foreground bg-muted
+ }
+ pre {
+ @apply p-2 bg-neutral-300 bg-opacity-50 dark:bg-slate-800 dark:bg-opacity-100 rounded-lg font-mono overflow-y-scroll mb-2
+ }
+ p > code {
+ @apply px-1 bg-neutral-300 bg-opacity-50 dark:bg-slate-600 dark:bg-opacity-100 rounded-md font-mono
+ }
+ pre > code {
+ @apply px-0 bg-transparent rounded-none
+ }
+ ul {
+ @apply p-2 pl-4 mb-2 list-disc text-black dark:text-night-100
+ }
+ ol {
+ @apply ml-2 p-2 pl-4 mb-2 list-decimal text-black dark:text-night-100
+ }
+ li {
+ @apply mb-1
+ }
+ img {
+ @apply relative -z-10 border-4 border-crusta-200 dark:border-night-800 rounded-lg shadow-lgr shadow-crusta-400/20 dark:shadow-night-400/50 my-2
+ }
}
\ No newline at end of file