20 lines
493 B
PHP
20 lines
493 B
PHP
<?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');
|
|
|
|
?>
|
|
|
|
<h1><?php echo $page->title()->html() ?></h1>
|
|
|
|
<?php echo $page->text()->kirbytext() ?>
|
|
|
|
<?php snippet('base/cont-footer') ?>
|
|
<?php snippet('base/html-end') ?>
|