-
Notifications
You must be signed in to change notification settings - Fork 10
/
footer.php
60 lines (35 loc) · 1.19 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after
*
* @package maizi
*/
$the_theme = wp_get_theme();
$container = get_theme_mod( 'maizi_container_type' );
?>
<?php get_sidebar( 'footerfull' ); ?>
<div class="wrapper" id="wrapper-footer">
<div class="<?php echo esc_html( $container ); ?>">
<div class="row">
<div class="col-md-12">
<footer class="site-footer" id="colophon">
<div class="site-info">
<span>Theme: <a href="https://www.awaimai.com/maizi">Maizi</a>.</span>
<span>Powered by <a href="https://wordpress.org/" target="_blank">WordPress</a>.</span>
<?php the_icp() ?>
<?php dynamic_sidebar( 'footer-copyright' ); ?>
</div><!-- .site-info -->
<a href="#" class="scroll-top">
<i class="dashicons dashicons-arrow-up-alt2 icon16"></i>
</a>
</footer><!-- #colophon -->
</div><!--col end -->
</div><!-- row end -->
</div><!-- container end -->
</div><!-- wrapper end -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>