2016-03-31 08:37:32 +00:00
|
|
|
<?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');
|
|
|
|
?>
|
|
|
|
|
2016-04-02 22:24:34 +00:00
|
|
|
<main class="section">
|
|
|
|
<div class="container">
|
|
|
|
|
|
|
|
<h1><?php echo $page->title()->html() ?></h1>
|
|
|
|
|
|
|
|
<?php echo $page->text()->kirbytext(); ?>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</main>
|
2016-03-31 08:37:32 +00:00
|
|
|
|
|
|
|
<?php snippet('base/cont-footer') ?>
|
2016-10-28 21:32:29 +00:00
|
|
|
<?php snippet('base/html-end', []) ?>
|