diff --git a/src/components/AppLayout/AsideLayout.astro b/src/components/AppLayout/AsideLayout.astro index ee579d0..9c5403f 100644 --- a/src/components/AppLayout/AsideLayout.astro +++ b/src/components/AppLayout/AsideLayout.astro @@ -22,9 +22,10 @@ default slot interface Props { reducedAsideWidth?: boolean; + withAside?: boolean | undefined; } -const { reducedAsideWidth = false } = Astro.props; +const { reducedAsideWidth = false, withAside = true } = Astro.props; ---
@@ -40,10 +41,14 @@ const { reducedAsideWidth = false } = Astro.props;
- - - - + { + withAside && ( + + + + + ) + } {/* ------------------------------------------- CSS -------------------------------------------- */} diff --git a/src/pages/[locale]/recorders/[id].astro b/src/pages/[locale]/recorders/[id].astro index b9b5a24..41dfb10 100644 --- a/src/pages/[locale]/recorders/[id].astro +++ b/src/pages/[locale]/recorders/[id].astro @@ -41,7 +41,7 @@ if (languages.length > 0) { {/* ------------------------------------------- HTML ------------------------------------------- */} - + 0}>