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
|
|
|
|
// -------------------------------------------
|
|
|
|
|
2017-06-08 08:29:04 +00:00
|
|
|
$children = $page->children()->visible();
|
2016-04-07 19:57:06 +00:00
|
|
|
|
|
|
|
snippet('base/html-head');
|
|
|
|
snippet('base/cont-header');
|
|
|
|
?>
|
|
|
|
|
|
|
|
<main class="section projects">
|
|
|
|
<div class="container">
|
|
|
|
<h1><?php echo $page->title()->kirbytext(); ?></h1>
|
|
|
|
<?php echo $page->text()->kirbytext(); ?>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="container"><div class="row">
|
|
|
|
<?php $i=0; foreach($children as $c) : $i++; ?>
|
|
|
|
<div class="col-sm-6 col-lg-3"><div class="card">
|
2016-04-22 21:35:45 +00:00
|
|
|
<a href="<?php echo $c->url(); ?>">
|
2016-04-07 19:57:06 +00:00
|
|
|
<?php if ($img = $c->images()->find($c->exrpt_img())) {
|
2016-04-27 20:44:51 +00:00
|
|
|
echo ThumbExt($img, ['width'=>400,'quality'=>70,'class'=>"card-img-top",'inline-size'=>false]);
|
2016-04-07 19:57:06 +00:00
|
|
|
} ?>
|
2017-08-18 23:35:03 +00:00
|
|
|
<div class="card-body">
|
2016-04-07 19:57:06 +00:00
|
|
|
<h5 class="card-title"><?php echo $c->title()->html(); ?></h5>
|
2016-04-22 21:35:45 +00:00
|
|
|
<p class="card-text"><?php echo $c->exrpt_text()->kirbytext(); ?></p>
|
2016-04-07 19:57:06 +00:00
|
|
|
<a href="<?php echo $c->url(); ?>" class="card-link">mehr</a>
|
|
|
|
</div>
|
2016-04-22 21:35:45 +00:00
|
|
|
</a>
|
2016-04-07 19:57:06 +00:00
|
|
|
</div></div>
|
|
|
|
<?php
|
2017-08-18 23:35:03 +00:00
|
|
|
echo ($i%2 == 0)?'<div class="clearfix d-block d-lg-none"></div>':'';
|
|
|
|
echo ($i%4 == 0)?'<div class="clearfix d-none d-lg-block"></div>':''
|
2016-04-07 19:57:06 +00:00
|
|
|
?>
|
|
|
|
<?php endforeach; ?>
|
|
|
|
</div></div>
|
|
|
|
</main>
|
|
|
|
|
|
|
|
<?php snippet('base/cont-footer') ?>
|
2016-10-28 21:32:29 +00:00
|
|
|
<?php snippet('base/html-end', []) ?>
|