mmk2410.org/site/templates/about.php
Marcel Kapfer b36abcd3bf
All checks were successful
Deploy / deploy (push) Successful in 3s
🏷 Add types
2025-01-30 19:52:03 +01:00

22 lines
487 B
PHP

<?php
/**
* @var Kirby\Cms\Page $page
*/
?>
<?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() ?>