2020-08-18 16:31:28 +00:00
|
|
|
<?= $this->extend('admin/_layout') ?>
|
|
|
|
|
|
|
|
<?= $this->section('title') ?>
|
|
|
|
<?= $page->title ?>
|
2020-10-02 15:38:16 +00:00
|
|
|
<?= $this->endSection() ?>
|
|
|
|
|
|
|
|
<?= $this->section('pageTitle') ?>
|
|
|
|
<?= $page->title ?>
|
|
|
|
<?= $this->endSection() ?>
|
|
|
|
|
|
|
|
<?= $this->section('headerRight') ?>
|
|
|
|
<?= button(lang('Page.edit'), route_to('page-edit', $page->id), [
|
|
|
|
'variant' => 'primary',
|
|
|
|
'iconLeft' => 'add',
|
|
|
|
]) ?>
|
2020-08-18 16:31:28 +00:00
|
|
|
<?= $this->endSection() ?>
|
|
|
|
|
|
|
|
<?= $this->section('content') ?>
|
|
|
|
<div class="prose">
|
|
|
|
<?= $page->content_html ?>
|
|
|
|
</div>
|
|
|
|
<?= $this->endSection() ?>
|