forked from senlin/soblossom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
executable file
·55 lines (39 loc) · 1.31 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
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after
*
* @package soblossom
*/
?>
<footer id="colophon" class="site-footer" role="contentinfo">
<?php get_sidebar( 'footer' ); ?>
<div class="site-info row">
<nav class="footer-links small-12 medium-6 medium-push-6 columns">
<?php soblossom_footer_nav(); ?>
</nav>
<div class="credits small-12 medium-6 medium-pull-6 columns">
<?php
printf( __( '© %1$s <a href="%2$s" title="%3$s">%3$s</a> · All Rights Reserved.', 'soblossom' ),
date( 'Y' ),
esc_url( home_url( '/' ) ),
esc_attr( get_bloginfo( 'name' ) )
);
?>
</div> <!-- end .credits -->
</div><!-- end .site-info -->
</footer><!-- end #colophon -->
</div> <!-- end #page .hfeed.site line 59 header.php -->
</div> <!-- end .inner-wrap line 57 header.php -->
</div> <!-- end .off-canvas-wrap line 55 header.php -->
<div id="back-top">
<a href="#" title="<?php _e( 'Back to top', 'soblossom' ); ?>">
<i class="fa fa-angle-double-up fa-2x"></i>
</a>
</div>
<?php // all js scripts are loaded in inc/soblossom.php
wp_footer();
?>
</body>
</html>