view transition draft

This commit is contained in:
2025-02-12 10:11:23 -05:00
parent 1da3d2bc34
commit 85a04c276c
18 changed files with 137 additions and 74 deletions
+5 -7
View File
@@ -16,7 +16,7 @@ const title = Astro.props.title || Astro.props.frontmatter?.title || 'Unknown';
---
<!doctype html>
<html lang="en" transition:animate="none">
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
@@ -29,16 +29,14 @@ const title = Astro.props.title || Astro.props.frontmatter?.title || 'Unknown';
type="application/rss+xml"
title="ghall.blog - RSS"
href={`${Astro.site}rss.xml`}
/><title>{`ghall.blog - ${title}`}</title></head
>
<ClientRouter />
<body class="layout-simple">
/><title>{`ghall.blog - ${title}`}</title>
<ClientRouter />
</head>
<body class="layout-simple" transition:animate="initial">
<Header />
<main>
<slot />
</main>
<Footer />
</body>
</html>