summaryrefslogtreecommitdiff
path: root/www/src/components/BlogPostPreview.astro
diff options
context:
space:
mode:
Diffstat (limited to 'www/src/components/BlogPostPreview.astro')
-rw-r--r--www/src/components/BlogPostPreview.astro4
1 files changed, 1 insertions, 3 deletions
diff --git a/www/src/components/BlogPostPreview.astro b/www/src/components/BlogPostPreview.astro
index bb44c4abb..235ca6371 100644
--- a/www/src/components/BlogPostPreview.astro
+++ b/www/src/components/BlogPostPreview.astro
@@ -15,9 +15,7 @@ const { title, publishDate, href } = Astro.props;
<a href={href}><h1 class="title">{title}</h1></a>
</header>
<main>
- <slot />
-
- <a href={href}>Read more</a>
+ <slot />{' '}<a href={href}>Read more →</a>
</main>
</article>