summaryrefslogtreecommitdiff
path: root/src/layouts/PostLayout.astro
diff options
context:
space:
mode:
authorMatt Kosarek <matt.kosarek@canonical.com>2026-03-18 08:17:44 -0400
committerMatt Kosarek <matt.kosarek@canonical.com>2026-03-18 08:17:44 -0400
commitce455b41a2a3d520a2f37c2d4c69bf6ab33a65f7 (patch)
treed5ed04d3c1ec4d4a2b18ee57faf6bad659065f2e /src/layouts/PostLayout.astro
parent5256e50987e8173080bb84cfe881ac0e5f089847 (diff)
feature: add a light and dark themeHEADmaster
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>