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>
23 lines
677 B
Plaintext
23 lines
677 B
Plaintext
---
|
|
// Port of preview/pages/wysiwyg.html (layout: default).
|
|
// The front matter uses `menu: base.wysiwyg` (not `page-menu`), so no pageMenu prop.
|
|
import DefaultLayout from '@shared/layouts/DefaultLayout.astro';
|
|
import Wysiwyg from '@shared/components/ui/Wysiwyg.astro';
|
|
---
|
|
|
|
<DefaultLayout title="HugeRTE" pageHeader="HugeRTE" pageLibs={['hugerte']}>
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<div class="mb-3">
|
|
<label class="form-label">Your name</label>
|
|
<input type="text" class="form-control" placeholder="Name" />
|
|
</div>
|
|
|
|
<div class="mb-3">
|
|
<label class="form-label">Description</label>
|
|
<Wysiwyg />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</DefaultLayout>
|