mirror of
https://github.com/Huber1/skigemeinschaft.git
synced 2026-05-13 12:27:34 +02:00
28 lines
530 B
PHP
28 lines
530 B
PHP
<?php
|
|
|
|
use Kirby\Panel\Page;
|
|
|
|
/**
|
|
* @var Page $page
|
|
*/
|
|
|
|
?>
|
|
<?php snippet('header') ?>
|
|
|
|
<div class="py-6">
|
|
<h1><?= $page->title()->esc() ?></h1>
|
|
</div>
|
|
|
|
<!-- Content -->
|
|
<div class="flex flex-col items-center">
|
|
<?php if ($page->content()->image()->toFile() != null): ?>
|
|
<img
|
|
src="<?= $page->content()->image()->toFile()->url() ?>"
|
|
class="mb-8 rounded-lg">
|
|
<?php endif ?>
|
|
<div class="prose text-center max-w-xl">
|
|
<?= $page->content()->text()->kirbytext() ?>
|
|
</div>
|
|
</div>
|
|
|
|
<?php snippet('footer') ?>
|