summaryrefslogtreecommitdiff
path: root/www/src/components/BlogPost.astro
diff options
context:
space:
mode:
Diffstat (limited to 'www/src/components/BlogPost.astro')
-rw-r--r--www/src/components/BlogPost.astro2
1 files changed, 2 insertions, 0 deletions
diff --git a/www/src/components/BlogPost.astro b/www/src/components/BlogPost.astro
index c2cd18587..394eff7ce 100644
--- a/www/src/components/BlogPost.astro
+++ b/www/src/components/BlogPost.astro
@@ -2,6 +2,7 @@
import Author from './Author.astro';
import GithubStarButton from './GithubStarButton.astro';
import GoogleAnalytics from './GoogleAnalytics.astro';
+import BackArrow from './BackArrow.astro';
export interface Props {
title: string;
@@ -24,6 +25,7 @@ const { title, author, publishDate, heroImage } = Astro.props;
</header>
<main class="content">
<slot />
+ <BackArrow url={'/blog/'} title={'Back to all blogposts'}/>
</main>
</article>
<GoogleAnalytics />