Compare commits

...

2 Commits

Author SHA1 Message Date
bd7588b819 Change directory for deployment
All checks were successful
Deploy Astro / Build and Deploy (push) Successful in 1m41s
Signed-off-by: Daniel Kluge <c0ntroller@noreply.git.c0ntroller.de>
2025-01-05 18:56:47 +01:00
138ad075ea footer-nav ohne transition (fehleranfällig)
All checks were successful
Deploy Astro / Build and Deploy (push) Successful in 27m28s
2024-03-03 16:26:46 +01:00
3 changed files with 3 additions and 3 deletions

View File

@ -26,6 +26,6 @@ jobs:
username: ${{ secrets.SSH_USERNAME }} username: ${{ secrets.SSH_USERNAME }}
key: ${{ secrets.SSH_KEY }} key: ${{ secrets.SSH_KEY }}
source: "dist/*" source: "dist/*"
target: /var/www/website/dev target: /srv/website/dev
overwrite: true overwrite: true
strip_components: 1 strip_components: 1

View File

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