-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfooter.php
73 lines (61 loc) · 2.27 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
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after
*
* @package bootville
*/
?>
</div><!-- #content -->
<footer id="colophon" class="site-footer" role="contentinfo">
<div class="footer-widgets widget-area row">
<div class="col-lg-4 col-md-4">
<?php dynamic_sidebar( 'footer-1' ); ?>
</div>
<div class="col-lg-4 col-md-4">
<?php dynamic_sidebar( 'footer-2' ); ?>
</div>
<div class="col-lg-4 col-md-4">
<?php dynamic_sidebar( 'footer-3' ); ?>
</div>
</div><!--row-->
<div class="row">
<div class="footer-menu">
<div class="col-lg-12 col-md-12">
<?php if (has_nav_menu('footer-menu', 'bootville-lite')) { ?>
<nav role="navigation">
<?php wp_nav_menu(array(
'container' => '',
'menu_class' => 'footer-menu',
'theme_location' => 'footer-menu')
);
?>
</nav>
<?php } ?>
</div>
</div><!-- .footer-menu-->
</div><!-- .row -->
<div class="row">
<div class="credits">
<div class="col-md-6 col-lg-6 col-lg-push-6">
<div class="copyright">
<p class="copyright">© <?php _e('Copyright', 'bootville-lite'); ?> <?php echo date('Y'); ?> - <a href="<?php echo home_url(); ?>/" title="<?php bloginfo('name'); ?>" rel="home"><?php bloginfo('name'); ?></a></p>
</div>
</div>
<div class="col-md-6 col-lg-6 col-lg-pull-6">
<div class="site-info">
<!-- Theme credits -->
<a href="<?php echo esc_url( __( 'http://www.themes.zeaks.org/themes/bootville-lite/', 'bootville-lite' ) ); ?>" title="<?php esc_attr_e( 'Bootville Lite', 'bootville-lite' ); ?>"> <?php printf( 'Bootville Lite', 'bootville-lite' ); ?></a>
<?php printf( 'Theme ', 'bootville-lite' ); ?>
<!-- WordPress credits -->
<a href="<?php echo esc_url( __( 'http://wordpress.org/', 'bootville-lite' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'bootville-lite' ); ?>"><?php printf( __( 'Powered by %s', 'bootville-lite' ), 'WordPress' ); ?></a>
</div><!-- .site-info -->
</div>
</div><!-- .credits -->
</div><!-- .row -->
</footer><!-- #colophon -->
</div><!-- #wrap -->
<?php wp_footer(); ?>
</body>
</html>