Yassine Doghri dfb7888aeb feat(plugins): add aside with plugin metadata next to plugin's readme
- enhance plugin card ui
- refactor components to be more consistent
- invert toggler label for better UX
- edit view components regex
2024-06-14 15:53:33 +00:00

21 lines
547 B
PHP

<?= $this->extend('_layout') ?>
<?= $this->section('title') ?>
<?= esc($page->title) ?>
<?= $this->endSection() ?>
<?= $this->section('pageTitle') ?>
<?= esc($page->title) ?>
<?= $this->endSection() ?>
<?= $this->section('headerRight') ?>
<?php // @icon('add-fill')?>
<x-Button variant="primary" uri="<?= route_to('page-edit', $page->id) ?>" iconLeft="add-fill"><?= lang('Page.edit') ?></x-Button>
<?= $this->endSection() ?>
<?= $this->section('content') ?>
<div class="prose">
<?= $page->content_html ?>
</div>
<?= $this->endSection() ?>