1
0
Fork 0

[SITE] add template, blueprint, css for project pages and projects page

This commit is contained in:
Jannik Beyerstedt 2016-04-07 21:57:06 +02:00
parent 573ac12fca
commit 75d1ead187
13 changed files with 548 additions and 1 deletions

View file

@ -0,0 +1,27 @@
<?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>
<?php echo snippet('plg/plg-masonry-sb', array('currentPage'=>$page)) ; ?>
<div class="container">
<?php echo $page->text2()->kirbytext(); ?>
</div>
</main>
<?php snippet('base/cont-footer') ?>
<?php snippet('base/html-end') ?>