1er commit

This commit is contained in:
2020-04-21 13:42:20 +02:00
commit d94c985d0e
8 changed files with 452 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
<?php
/*
Template Name: Footer Without Widgets
*/
?>
</div><!-- #content -->
<footer id="colophon" class="site-footer">
<div class="copyright-area">
<p>
<?php
$default_copyright_text = ' &copy; '.get_bloginfo('name').' '.date('Y');
echo get_theme_mod('copyright_text', $default_copyright_text );
?>
</p>
</div>
</footer><!-- #colophon -->
</div><!-- #page -->
<?php if(get_theme_mod('enable_scroll_back_to_top_btn', true)) { ?>
<div class="scroll-back-to-top-btn">
<?php get_template_part('assets/icons/inline', 'arrow_up.svg'); ?>
</div>
<?php } ?>
<?php wp_footer(); ?>
</body>
</html>