mirror of
https://github.com/tabler/tabler.git
synced 2026-08-29 13:21:29 +04:00
31 lines
626 B
Plaintext
31 lines
626 B
Plaintext
---
|
|
import BaseLayout from './BaseLayout.astro'
|
|
import Logo from '@shared/components/navbar/Logo.astro'
|
|
|
|
interface Props {
|
|
title?: string
|
|
containerSize?: string
|
|
hideLogo?: boolean
|
|
}
|
|
|
|
const { title, containerSize = 'tight', hideLogo } = Astro.props
|
|
---
|
|
|
|
<BaseLayout title={title}>
|
|
<!-- BEGIN PAGE BODY -->
|
|
<main class="page page-center" id="content">
|
|
<div class={`container container-${containerSize} py-4`}>
|
|
{
|
|
!hideLogo && (
|
|
<div class="text-center mb-4">
|
|
<Logo />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
<slot />
|
|
</div>
|
|
</main>
|
|
<!-- END PAGE BODY -->
|
|
</BaseLayout>
|