mirror of
https://github.com/tabler/tabler.git
synced 2026-08-29 13:21:29 +04:00
23 lines
716 B
Plaintext
23 lines
716 B
Plaintext
---
|
|
// The front matter uses `menu: base.wysiwyg` (not `page-menu`), so no pageMenu prop.
|
|
import DefaultLayout from '@shared/layouts/DefaultLayout.astro';
|
|
import Card from '@shared/components/ui/Card.astro';
|
|
import CardBody from '@shared/components/ui/CardBody.astro';
|
|
import Wysiwyg from '@shared/components/ui/Wysiwyg.astro';
|
|
import FormGroup from '@shared/components/ui/FormGroup.astro';
|
|
---
|
|
|
|
<DefaultLayout title="HugeRTE" pageHeader="HugeRTE" pageLibs={['hugerte']}>
|
|
<Card>
|
|
<CardBody>
|
|
<FormGroup label="Your name">
|
|
<input type="text" class="form-control" placeholder="Name" />
|
|
</FormGroup>
|
|
|
|
<FormGroup label="Description">
|
|
<Wysiwyg />
|
|
</FormGroup>
|
|
</CardBody>
|
|
</Card>
|
|
</DefaultLayout>
|