mmk2410.org/site/templates/about.php

23 lines
487 B
PHP
Raw Normal View History

2025-01-30 19:52:03 +01:00
<?php
/**
* @var Kirby\Cms\Page $page
*/
?>
2024-03-17 22:34:51 +01:00
<?php snippet('layout', slots: true) ?>
<?php slot() ?>
<h1><?= $page->title() ?></h1>
<div style="text-align: center; margin: 20px 0;">
<img src="<?= $page->image('profile.png')->url() ?>" style="width: 300px" />
<div style="font-size: 40px">
<strong><?= $page->intro_title() ?></strong>
</div>
<div style="font-size: 25px">
<?= $page->intro_text() ?>
</div>
</div>
<?= $page->text()->kirbytext() ?>
<?php endslot() ?>