-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathfooter.php
executable file
·44 lines (31 loc) · 905 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
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
*
* @package Marvy
*/
?>
</div><!-- #content -->
<?php if ( is_active_sidebar( 'sidebar-2' ) ) { ?>
<div class="footer-widget-area">
<div class="container">
<div class="grid">
<?php dynamic_sidebar( 'sidebar-2' ); ?>
</div>
</div>
</div>
<?php } ?>
<footer id="colophon" class="site-footer" role="contentinfo">
<div class="container site-info">
<a href="<?php echo esc_url( __( 'http://wordpress.org/', 'marvy' ) ); ?>"><?php printf( esc_html__( 'Proudly powered by %s', 'marvy' ), 'WordPress' ); ?></a>
<span class="sep"> | </span>
<?php printf( esc_html__( 'Theme: %1$s', 'marvy' ), 'Marvy' ); ?>
</div><!-- .site-info -->
</footer><!-- #colophon -->
</div><!-- #page -->
<div class="nav-overlay"></div>
<?php wp_footer(); ?>
</body>
</html>