33 lines
901 B
PHP
33 lines
901 B
PHP
<?php
|
|
// filepath: /home/michi/landingpages/checkvorteil-wordpress/footer.php
|
|
?>
|
|
|
|
<footer class="footer">
|
|
<div class="container">
|
|
<p>© <?php echo date('Y'); ?> <?php bloginfo('name'); ?>. Alle Rechte vorbehalten.</p>
|
|
<p>Entwickelt für maximale Online-Business Performance.</p>
|
|
</div>
|
|
</footer>
|
|
|
|
<?php wp_footer(); ?>
|
|
|
|
<script>
|
|
function toggleMobileMenu() {
|
|
const menu = document.querySelector('.nav-menu');
|
|
menu.classList.toggle('active');
|
|
}
|
|
|
|
// Close mobile menu when clicking outside
|
|
document.addEventListener('click', function(event) {
|
|
const nav = document.querySelector('.navbar');
|
|
const menu = document.querySelector('.nav-menu');
|
|
const toggle = document.querySelector('.mobile-toggle');
|
|
|
|
if (!nav.contains(event.target) && menu.classList.contains('active')) {
|
|
menu.classList.remove('active');
|
|
}
|
|
});
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|