castopod/themes/cp_admin/page/view.php
Yassine Doghri 7a276764e6 feat(themes): add ViewThemes library to set views in root themes folder
app, admin, install and authentication views are now located in root themes/ folder
2021-12-29 11:54:52 +00:00

23 lines
502 B
PHP

<?= $this->extend('_layout') ?>
<?= $this->section('title') ?>
<?= $page->title ?>
<?= $this->endSection() ?>
<?= $this->section('pageTitle') ?>
<?= $page->title ?>
<?= $this->endSection() ?>
<?= $this->section('headerRight') ?>
<?= button(lang('Page.edit'), route_to('page-edit', $page->id), [
'variant' => 'accent',
'iconLeft' => 'add',
]) ?>
<?= $this->endSection() ?>
<?= $this->section('content') ?>
<div class="prose">
<?= $page->content_html ?>
</div>
<?= $this->endSection() ?>