Skip to content

Commit

Permalink
fix: Partner seo optimized and bugs fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
maehr committed Jan 16, 2024
1 parent 7d06829 commit 1763a09
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions src/routes/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@
const drawerSettings = { id: 'sidebar' };
drawerStore.open(drawerSettings);
}
$: classesPageFooter = $page.url.pathname === '/orte' ? 'hidden' : '';
$: classesPageContentPartner = $page.url.pathname === '/partner' ? 'overflow-hidden' : '';
$: classesPageFooterPartner = $page.url.pathname === '/partner' ? 'hidden' : '';
const footerStore = localStorageStore('footer', { closed: false });
$: classesFooter = $footerStore.closed ? 'hidden' : '';
afterNavigate((params) => {
Expand All @@ -41,8 +42,8 @@

<AppShell
slotSidebarLeft="bg-surface-50 dark:bg-surface-900 border-t border-surface-500/10 w-0 lg:w-64"
slotPageFooter="bg-white {classesPageFooter}"
slotPageContent="bg-white dark:bg-surface-900 border-t border-surface-500/10"
slotPageFooter="bg-white {classesPageFooterPartner}"
slotPageContent="bg-white dark:bg-surface-900 border-t border-surface-500/10 {classesPageContentPartner}"
scrollbarGutter="auto"
>
<svelte:fragment slot="header">
Expand Down
2 changes: 1 addition & 1 deletion src/routes/partner/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
</script>

<svelte:head>
<title>Orte</title>
<title>Alle Kooperationspartner der Stadt.Geschichte.Basel im Überblick</title>
</svelte:head>

<section class="h-screen w-full">
Expand Down

0 comments on commit 1763a09

Please sign in to comment.