fix: show footer by default.

This commit is contained in:
Yufan Sheng 2024-11-27 23:53:15 +08:00
parent 6e6cc73c5b
commit 0aba200b9f
Signed by: syhily
GPG Key ID: DEB186763C308C31

View File

@ -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;
---
<!doctype html>