-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfooter.php
29 lines (26 loc) · 953 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
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after
*
* @package _sBS
*/
?> <div class="row">
<?php get_sidebar('footer') ?>
</div><!-- /.row -->
</div><!-- /.container -->
</div><!-- #content -->
<footer id="colophon" class="site-footer" role="contentinfo">
<div class="container">
<div class="site-info text-center">
<a href="<?php echo esc_url( __( 'http://wordpress.org/', _SBS_TEXT_DOMAIN ) ); ?>"><?php printf( __( 'Proudly powered by %s', _SBS_TEXT_DOMAIN ), 'WordPress' ); ?></a>
<span class="sep"> | </span>
<?php printf( __( 'Theme: %1$s by %2$s.', _SBS_TEXT_DOMAIN ), _SBS_NAME, '<a href=" ' . esc_url('http://aminul.net/projects/underscoresbs') . '" rel="designer">Aminul Islam</a>' ); ?>
</div><!-- .site-info -->
</div><!-- /.container -->
</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>