16 lines
554 B
PHP
16 lines
554 B
PHP
<?php
|
|
// -------------------------------------------
|
|
// kirby snippet FOR jannikbeyerstedt.de
|
|
|
|
// copyright: Jannik Beyerstedt | https://jannikbeyerstedt.de
|
|
// license: http://www.gnu.org/licenses/gpl-3.0.txt GPLv3 License
|
|
// -------------------------------------------
|
|
?>
|
|
<footer class="section" id="footer" role="contentinfo">
|
|
<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>
|
|
</footer>
|