mirror of
https://github.com/tabler/tabler.git
synced 2026-08-07 20:02:23 +04:00
d8956a06d6
Co-authored-by: Bartek <xbartoszdobija@gmail.com>
29 lines
933 B
Plaintext
29 lines
933 B
Plaintext
---
|
|
// Port of preview/pages/playground-layout.html (layout: default).
|
|
// 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';
|
|
---
|
|
|
|
<DefaultLayout
|
|
title="Layout playground"
|
|
pageHeader="Layout playground"
|
|
pretitle="Playground"
|
|
sidebar
|
|
sidebarDark
|
|
>
|
|
<div class="row row-cards">
|
|
<div class="col-12">
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<h2 class="card-title">Sandbox</h2>
|
|
<p class="text-secondary mb-0">Edit this page to try layout options, components, and styles.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</DefaultLayout>
|