summaryrefslogtreecommitdiff
path: root/src/layouts/PostLayout.astro
diff options
context:
space:
mode:
Diffstat (limited to 'src/layouts/PostLayout.astro')
-rw-r--r--src/layouts/PostLayout.astro4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/layouts/PostLayout.astro b/src/layouts/PostLayout.astro
index 31d0ac6..7b9d85c 100644
--- a/src/layouts/PostLayout.astro
+++ b/src/layouts/PostLayout.astro
@@ -14,5 +14,7 @@ const { title } = Astro.props;
<h1>{title}</h1>
<a href="/posts/feed.xml">RSS Feed</a>
</div>
- <slot />
+ <div class="org-article-content">
+ <slot />
+ </div>
</BaseLayout>