forked from ColorlibHQ/shapely
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
44 lines (36 loc) · 1.24 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
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after.
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package Shapely
*/
?>
</div><!-- row -->
</div><!-- #main -->
</section><!-- section -->
<?php shapely_footer_callout(); ?>
<footer id="colophon" class="site-footer footer bg-dark" role="contentinfo">
<div class="container footer-inner">
<div class="row">
<?php get_sidebar( 'footer' ); ?>
</div>
<div class="row">
<div class="site-info col-sm-6">
<div class="copyright-text"><?php _e( get_theme_mod( 'shapely_footer_copyright'), 'shapely' ); ?></div>
<div class="footer-credits"><?php shapely_footer_info(); ?></div>
</div><!-- .site-info -->
<div class="col-sm-6 text-right">
<?php if( !get_theme_mod('footer_social') ) shapely_social_icons(); ?>
</div>
</div>
</div>
<a class="btn btn-sm fade-half back-to-top inner-link" href="#top"><i class="fa fa-angle-up"></i></a>
</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>