footer-nav ohne transition (fehleranfällig)
All checks were successful
Deploy Astro / Build and Deploy (push) Successful in 27m28s

This commit is contained in:
Daniel Kluge 2024-03-03 16:26:46 +01:00
parent c2d70f0988
commit 138ad075ea
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View File

@ -46,5 +46,5 @@ if (diaryMain.data.repository) {
{ diaryPages.map((page) => <li><a href={collectionBasePath + "/" + page.slug}>{page.data.title}</a></li>) }
</ol>
<DiaryNavBar collectionName={diary} slot="footer-nav" transition:name="diary-footer-nav" />
<DiaryNavBar collectionName={diary} slot="footer-nav" />
</MarkdownLayout>

View File

@ -30,5 +30,5 @@ const { Content } = await entry.render();
<MarkdownLayout title={entry.data.site_title || entry.data.title} slug={entry.slug} srcPath={`${diary}/${entry.id}`} published={entry.data.published}>
<DiaryNavTop collectionName="rust" slot="main-nav" />
<Content />
<DiaryNavBar collectionName="rust" slot="footer-nav" transition:name="diary-footer-nav" />
<DiaryNavBar collectionName="rust" slot="footer-nav" />
</MarkdownLayout>