1
0
Fork 0

[SITE] home and footer finished + nav for top level

This commit is contained in:
Jannik Beyerstedt 2016-04-03 00:24:34 +02:00
parent e98b1fc877
commit 74408319b5
17 changed files with 2033 additions and 24 deletions

View file

@ -6,10 +6,27 @@
// license: http://www.gnu.org/licenses/gpl-3.0.txt GPLv3 License
// -------------------------------------------
?>
<footer class="section" id="footer" role="contentinfo">
<footer class="section">
<div class="container">
<p id="copyright"><?php echo $site->copyright()->kirbytextRaw() ?></p>
<p id="info"><?php echo $site->webdesigner()->kirbytextRaw() ?></p>
<div class="clearfix"></div>
<div class="row">
<div class="col-xs-4 col-xxs-12">
<?php echo $site->footer_left()->kirbytext(); ?>
</div>
<div class="col-xs-4 col-xxs-12 center">
<?php echo $site->footer_center()->kirbytext(); ?>
</div>
<div class="col-xs-4 col-xxs-12 right">
<a href="https://github.com/jbeyerstedt" class=""><i class="fa fa-github"></i></a>
<i class="fa fa-html5"></i>
<i class="fa fa-css3"></i>
<a href="https://getkirby.com"><svg>
<image xlink:href="<?php echo $site->url()?>/assets/images/kirbyicon.svg" src="<?php echo $site->url()?>/assets/images/kirbyicon.png"/>
</svg></a>
<?php echo $site->footer_right()->kirbytext(); ?>
</div>
</div>
</div>
</footer>