forked from Automattic/_s
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfooter.php
36 lines (32 loc) · 1.18 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 id=main div and all content after
*
* @package _s
* @since _s 1.0
*/
?>
</div><!-- #main -->
<footer id="colophon" class="site-footer" role="contentinfo">
<?php if ( is_active_sidebar( 'footer-widget-area' ) ) : ?>
<div id="footer-widget" class="widget-area">
<ul class="xoxo">
<?php dynamic_sidebar( 'footer-widget-area' ); ?>
</ul>
</div>
<?php endif; ?>
<div class="site-info">
<?php echo get_bloginfo('name', 'display')." © ".date("Y");?>
<span class="sep"> | </span>
<a href="http://wordpress.org/" title="<?php esc_attr_e( 'A Semantic Personal Publishing Platform', '_s' ); ?>" rel="generator"><?php printf( __( 'Proudly powered by %s', '_s' ), 'WordPress' ); ?></a>
<span class="sep"> | </span>
<?php printf( __( 'Theme: %1$s by %2$s.', '_dollars' ), '_dollars', '<a href="http://www.getshopped.org" rel="designer">Instinct</a>' ); ?>
<a class='return-to-top' onclick="_d_return_to_top()">Return to top</a>
</div><!-- .site-info -->
</footer><!-- .site-footer .site-footer -->
</div><!-- #page .hfeed .site -->
<?php wp_footer(); ?>
</body>
</html>