mirror of
https://github.com/Huber1/skigemeinschaft.git
synced 2026-05-13 12:27:34 +02:00
21 lines
276 B
PHP
21 lines
276 B
PHP
<?php
|
|
|
|
use Kirby\Panel\Page;
|
|
|
|
/**
|
|
* @var Page $page
|
|
*/
|
|
|
|
?>
|
|
<?php snippet('header') ?>
|
|
|
|
<div class="py-6">
|
|
<h1><?= $page->title()->esc() ?></h1>
|
|
</div>
|
|
|
|
<!-- Content -->
|
|
<article class="prose max-w-none">
|
|
<?= $page->text()->kt() ?>
|
|
</article>
|
|
|
|
<?php snippet('footer') ?>
|