Initial theme commit

This commit is contained in:
2026-04-12 22:08:32 +02:00
commit 4d0189a7f2
27 changed files with 2503 additions and 0 deletions

29
footer.php Executable file
View File

@@ -0,0 +1,29 @@
<footer class="site-footer">
<div class="footer-image">
<img src="<?php echo get_template_directory_uri(); ?>/assets/images/footer-skyline.png" alt="Skyline">
</div>
<div class="container footer-content">
<div class="footer-links">
<?php
wp_nav_menu([
'theme_location' => 'footer',
'container' => false,
'menu_class' => 'footer-menu',
'fallback_cb' => false
]);
?>
</div>
<p class="footer-copy">
© <?php echo esc_html(gmdate('Y')); ?> <?php bloginfo('name'); ?>
</p>
</div>
</footer>
<?php wp_footer(); ?>
</body>
</html>