Initial theme commit
This commit is contained in:
29
footer.php
Executable file
29
footer.php
Executable 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>
|
||||
Reference in New Issue
Block a user