-
Notifications
You must be signed in to change notification settings - Fork 53
/
footer.php
36 lines (34 loc) · 1.05 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
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after
*
* @package iPanelThemes Knowledgebase
*/
?>
</div><!-- #content -->
<footer id="colophon" class="site-footer" role="contentinfo">
<div class="container">
<div class="row">
<div class="col-md-8" id="footer-widget-1">
<?php dynamic_sidebar( 'sidebar-2' ); ?>
</div>
<div class="col-md-4" id="footer-widget-2">
<?php dynamic_sidebar( 'sidebar-3' ); ?>
</div>
</div>
</div>
<div class="site-info">
<p class="copyright text-muted">
<a href="http://wordpress.org/" rel="generator"><?php printf( __( 'Proudly powered by %s', 'ipt_kb' ), 'WordPress' ); ?></a>
<span class="sep"> | </span>
<?php printf( __( 'Theme: %1$s by %2$s.', 'ipt_kb' ), 'WP Knowledge Base', '<a href="http://ipanelthemes.com/" rel="designer">iPanelThemes.com</a>' ); ?>
</p>
<?php do_action( 'ipt_kb_credits' ); ?>
</div><!-- .site-info -->
<?php wp_footer(); ?>
</footer><!-- #colophon -->
</div><!-- #page -->
</body>
</html>