-
Notifications
You must be signed in to change notification settings - Fork 1
/
footer.php
29 lines (27 loc) · 898 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
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after
*
* @package Clean Blog
*/
?>
<!-- Footer -->
<footer class="site-footer">
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<?php if ( is_active_sidebar( 'sidebar-1' ) ) : ?>
<ul class="list-inline text-center">
<?php dynamic_sidebar( 'sidebar-1' ); ?>
</ul>
<?php endif; ?>
<p class="copyright text-muted"><?php _e( 'Powered By WordPress and', 'cleanblog' ); ?> <a href="https://github.com/ismaeltoe/cleanblog/">Clean Blog</a></p>
</div>
</div>
</div>
</footer>
<?php wp_footer(); ?>
</body>
</html>