mirror of
https://github.com/tabler/tabler.git
synced 2026-08-29 13:21:29 +04:00
31 lines
973 B
Plaintext
31 lines
973 B
Plaintext
---
|
|
// Front matter: layout-sidebar + layout-sidebar-dark + page-header + pretitle.
|
|
// Note: layout-navbar-toolbar is an inert front-matter key — it is not
|
|
// referenced by default.html or any include, so there is no prop for it.
|
|
// No page-menu front matter → pageMenu is intentionally not passed (nothing
|
|
// active in the navbar/sidebar, matching the Eleventy output).
|
|
import DefaultLayout from '@shared/layouts/DefaultLayout.astro';
|
|
import Card from '@ui/Card.astro';
|
|
import CardBody from '@ui/CardBody.astro';
|
|
import CardTitle from '@ui/CardTitle.astro';
|
|
---
|
|
|
|
<DefaultLayout
|
|
title="Layout playground"
|
|
pageHeader="Layout playground"
|
|
pretitle="Playground"
|
|
sidebar
|
|
sidebarDark
|
|
>
|
|
<div class="row row-cards">
|
|
<div class="col-12">
|
|
<Card>
|
|
<CardBody>
|
|
<CardTitle as="h2">Sandbox</CardTitle>
|
|
<p class="text-secondary mb-0">Edit this page to try layout options, components, and styles.</p>
|
|
</CardBody>
|
|
</Card>
|
|
</div>
|
|
</div>
|
|
</DefaultLayout>
|