2016-03-31 08:37:32 +00:00
|
|
|
<?php
|
|
|
|
// -------------------------------------------
|
|
|
|
// kirby snippet FOR jannikbeyerstedt.de
|
|
|
|
|
|
|
|
// copyright: Jannik Beyerstedt | https://jannikbeyerstedt.de
|
|
|
|
// license: http://www.gnu.org/licenses/gpl-3.0.txt GPLv3 License
|
|
|
|
// -------------------------------------------
|
|
|
|
?>
|
2016-04-02 22:24:34 +00:00
|
|
|
<footer class="section">
|
2016-03-31 08:37:32 +00:00
|
|
|
<div class="container">
|
2016-04-02 22:24:34 +00:00
|
|
|
<div class="row">
|
2017-08-18 23:35:03 +00:00
|
|
|
<div class="col-sm-4 col-12">
|
2016-04-02 22:24:34 +00:00
|
|
|
<?php echo $site->footer_left()->kirbytext(); ?>
|
|
|
|
|
|
|
|
</div>
|
2017-08-18 23:35:03 +00:00
|
|
|
<div class="col-sm-4 col-12 text-sm-center">
|
2016-04-02 22:24:34 +00:00
|
|
|
<?php echo $site->footer_center()->kirbytext(); ?>
|
|
|
|
|
|
|
|
</div>
|
2017-08-18 23:35:03 +00:00
|
|
|
<div class="col-sm-4 col-12 text-sm-right">
|
2016-04-10 20:13:10 +00:00
|
|
|
<a href="https://github.com/jbeyerstedt"><img src="<?php echo $site->url()?>/assets/images/githubicon.png" alt="github icon"></a>
|
|
|
|
<img src="<?php echo $site->url()?>/assets/images/html5icon.png" alt="html5 icon">
|
|
|
|
<img src="<?php echo $site->url()?>/assets/images/css3icon.png" alt="css3 icon">
|
|
|
|
<a href="https://getkirby.com"><img src="<?php echo $site->url()?>/assets/images/kirbyicon-bl.png" alt="kirby icon"></a>
|
2016-04-02 22:24:34 +00:00
|
|
|
<?php echo $site->footer_right()->kirbytext(); ?>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
2016-03-31 08:37:32 +00:00
|
|
|
</div>
|
|
|
|
</footer>
|
2016-10-28 21:32:29 +00:00
|
|
|
|
|
|
|
</div><!--end div.site-wrap-->
|