1
0
Fork 0
web-jbeyerstedt/site/templates/default.php

25 lines
573 B
PHP
Raw Normal View History

<?php
// -------------------------------------------
// kirby template FOR jannikbeyerstedt.de
// copyright: Jannik Beyerstedt | https://jannikbeyerstedt.de
// license: http://www.gnu.org/licenses/gpl-3.0.txt GPLv3 License
// -------------------------------------------
snippet('base/html-head');
snippet('base/cont-header');
?>
<main class="section">
<div class="container">
2021-01-24 17:05:39 +00:00
<h1><?php echo $page->title()->html() ?></h1>
2021-01-24 17:05:39 +00:00
<?php echo $page->text()->kirbytext(); ?>
2021-01-24 17:05:39 +00:00
</div>
</main>
<?php snippet('base/cont-footer') ?>
<?php snippet('base/html-end', []) ?>