2021-09-02 16:34:25 +00:00
|
|
|
<?= $this->extend('_layout') ?>
|
2020-08-18 16:31:28 +00:00
|
|
|
|
2020-10-02 15:38:16 +00:00
|
|
|
<?= $this->section('pageTitle') ?>
|
2022-03-04 14:33:48 +00:00
|
|
|
<?= esc($page->title) ?>
|
2020-10-02 15:38:16 +00:00
|
|
|
<?= $this->endSection() ?>
|
|
|
|
|
|
|
|
<?= $this->section('headerRight') ?>
|
2024-12-17 15:06:08 +00:00
|
|
|
<?php // @icon("add-fill")?>
|
2024-05-09 17:55:41 +00:00
|
|
|
<x-Button variant="primary" uri="<?= route_to('page-edit', $page->id) ?>" iconLeft="add-fill"><?= lang('Page.edit') ?></x-Button>
|
2020-08-18 16:31:28 +00:00
|
|
|
<?= $this->endSection() ?>
|
|
|
|
|
|
|
|
<?= $this->section('content') ?>
|
|
|
|
<div class="prose">
|
|
|
|
<?= $page->content_html ?>
|
|
|
|
</div>
|
|
|
|
<?= $this->endSection() ?>
|