2016-04-07 19:57:06 +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');
|
|
|
|
?>
|
|
|
|
|
|
|
|
<main class="section project">
|
|
|
|
<div class="container">
|
|
|
|
<h1><?php echo $page->title()->kirbytext(); ?></h1>
|
|
|
|
<?php echo $page->text()->kirbytext(); ?>
|
|
|
|
</div>
|
|
|
|
|
2017-06-08 08:29:04 +00:00
|
|
|
<?php if($page->en_masonry() == '1') echo snippet('plg/plg-masonry-sb', array('currentPage'=>$page)); ?>
|
2016-04-07 19:57:06 +00:00
|
|
|
|
|
|
|
<div class="container">
|
|
|
|
<?php echo $page->text2()->kirbytext(); ?>
|
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
|
|
|
|
<?php snippet('base/cont-footer') ?>
|
2017-01-02 10:10:41 +00:00
|
|
|
<?php snippet('base/html-end', ["plg_masonry"=>1]) ?>
|