From 0aba200b9f8c81aed867e43297531d9c02f8d838 Mon Sep 17 00:00:00 2001 From: Yufan Sheng Date: Wed, 27 Nov 2024 23:53:15 +0800 Subject: [PATCH] fix: show footer by default. --- src/layouts/BaseLayout.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layouts/BaseLayout.astro b/src/layouts/BaseLayout.astro index ea37df6..07b67e7 100644 --- a/src/layouts/BaseLayout.astro +++ b/src/layouts/BaseLayout.astro @@ -24,7 +24,7 @@ const title = ? `${options.title} - ${options.description}` : `${Astro.props.title} - ${options.title}`; const description = Astro.props.description || options.description; -const showFooter = Astro.props.footer || false; +const showFooter = Astro.props.footer || true; ---