forked from digitoimistodude/air-light
-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
35 lines (25 loc) · 921 Bytes
/
footer.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
/**
* Template for displaying the footer
*
* Description for template.
*
* @Author: Roni Laukkarinen
* @Date: 2020-05-11 13:33:49
* @Last Modified by: Roni Laukkarinen
* @Last Modified time: 2021-02-01 18:37:16
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
* @package air-light
*/
namespace Air_Light;
?>
</div><!-- #content -->
<footer id="colophon" class="site-footer has-dark-bg">
<?php get_template_part( 'template-parts/footer/demo-content' ); ?>
<p class="back-to-top"><a href="#page" class="js-trigger top no-text-link no-external-link-indicator" data-mt-duration="300"><span class="screen-reader-text"><?php echo esc_html( get_default_localization( 'Back to top' ) ); ?></span><?php include get_theme_file_path( '/svg/chevron-up.svg' ); ?></a></p>
</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>