-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathfooter.php
executable file
·35 lines (29 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
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after
*
* @package Awesome Theme
*/
?>
</div><!-- #content -->
<footer id="colophon" class="site-footer" role="contentinfo">
<div class="row"><!-- Foundation .row start -->
<div class="small-12 columns"><!-- Foundation .columns start -->
<div class="site-info">
<a href="<?php echo esc_url( __( 'http://wordpress.org/', 'awesome-theme' ) ); ?>"><?php printf( __( 'Proudly powered by %s', 'awesome-theme' ), 'WordPress' ); ?></a>
<span class="sep"> | </span>
<?php printf( __( 'Theme: %1$s by %2$s.', 'awesome-theme' ), 'Awesome Theme', '<a href="http://zeek.com" rel="designer">Steve Zehngut</a>' ); ?>
</div><!-- .site-info -->
</div><!-- Foundation .columns end -->
</div><!-- Foundation .row end -->
</footer><!-- #colophon -->
</div><!-- #page -->
<!-- close the off-canvas menu -->
<a class="exit-off-canvas"></a>
</div><!-- .inner-wrap -->
</div><!-- .off-canvas-wrap -->
<?php wp_footer(); ?>
</body>
</html>