Files
schachfreunde-badsteben/site/snippets/footer.php
T
2025-06-14 17:42:12 +02:00

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>&copy; 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>