24 lines
715 B
PHP
24 lines
715 B
PHP
<?php
|
|
/*
|
|
Snippets are a great way to store code snippets for reuse
|
|
or to keep your templates clean.
|
|
|
|
This footer snippet is reused in all templates.
|
|
|
|
More about snippets:
|
|
https://getkirby.com/docs/guide/templates/snippets
|
|
*/
|
|
?>
|
|
<footer class="bg-gray-800 text-white p-6 mt-8 shadow-inner">
|
|
<div class="container mx-auto text-center">
|
|
<p>© 2025 Meine Simple Webseite. Alle Rechte vorbehalten.</p>
|
|
<div class="mt-2 space-x-4">
|
|
<a href="#" class="hover:text-gray-300">Datenschutz</a>
|
|
<a href="#" class="hover:text-gray-300">Impressum</a>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
</body>
|
|
</html>
|