2015-03-23 12:39:22 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* The template for displaying the footer.
|
|
|
|
*
|
|
|
|
* Contains the closing of the #content div and all content after
|
|
|
|
*
|
|
|
|
* @package understrap
|
|
|
|
*/
|
2016-11-01 16:13:23 +00:00
|
|
|
|
2016-11-15 11:09:46 +00:00
|
|
|
$the_theme = wp_get_theme();
|
2016-11-21 18:47:05 +00:00
|
|
|
$container = get_theme_mod( 'understrap_container_type' );
|
2015-03-23 12:39:22 +00:00
|
|
|
?>
|
|
|
|
|
2016-11-21 18:47:05 +00:00
|
|
|
<?php get_sidebar( 'footerfull' ); ?>
|
2016-03-09 08:32:44 +00:00
|
|
|
|
2016-11-21 18:47:05 +00:00
|
|
|
<div class="wrapper" id="wrapper-footer">
|
2016-10-11 15:01:04 +00:00
|
|
|
|
2016-11-25 12:46:16 +00:00
|
|
|
<div class="<?php echo esc_html( $container ); ?>">
|
2015-08-12 15:21:46 +00:00
|
|
|
|
2016-11-21 18:47:05 +00:00
|
|
|
<div class="row">
|
2015-08-14 08:29:30 +00:00
|
|
|
|
2016-11-21 18:47:05 +00:00
|
|
|
<div class="col-md-12">
|
2016-10-11 15:01:04 +00:00
|
|
|
|
2016-11-25 13:10:28 +00:00
|
|
|
<footer class="site-footer" id="colophon">
|
2015-08-14 08:29:30 +00:00
|
|
|
|
2016-11-21 18:47:05 +00:00
|
|
|
<div class="site-info">
|
2017-02-02 11:00:38 +00:00
|
|
|
<a href="<?php echo esc_url( __( 'http://wordpress.org/','understrap' ) ); ?>"><?php printf( esc_html__( 'Proudly powered by %s', 'understrap' ),'WordPress' ); ?></a>
|
2016-11-21 18:47:05 +00:00
|
|
|
<span class="sep"> | </span>
|
2017-02-02 11:09:55 +00:00
|
|
|
<?php printf( // WPCS: XSS ok.
|
2017-02-02 11:02:40 +00:00
|
|
|
esc_html__( 'Theme: %1$s by %2$s.', 'understrap' ), $the_theme->get( 'Name' ),
|
2016-11-21 18:47:05 +00:00
|
|
|
'<a href="http://understrap.com/">understrap.com</a>' ); ?>
|
2017-02-02 11:02:40 +00:00
|
|
|
(<?php printf( // WPCS: XSS ok.
|
|
|
|
esc_html__( 'Version: %1$s', 'understrap' ), $the_theme->get( 'Version' ) ); ?>)
|
2016-11-21 18:47:05 +00:00
|
|
|
</div><!-- .site-info -->
|
2015-08-12 15:21:46 +00:00
|
|
|
|
2016-11-21 18:47:05 +00:00
|
|
|
</footer><!-- #colophon -->
|
2015-03-23 12:39:22 +00:00
|
|
|
|
2016-11-21 18:47:05 +00:00
|
|
|
</div><!--col end -->
|
2015-03-23 12:39:22 +00:00
|
|
|
|
2016-11-21 18:47:05 +00:00
|
|
|
</div><!-- row end -->
|
2016-10-11 15:01:04 +00:00
|
|
|
|
2016-11-21 18:47:05 +00:00
|
|
|
</div><!-- container end -->
|
2016-10-11 15:01:04 +00:00
|
|
|
|
2016-11-21 18:47:05 +00:00
|
|
|
</div><!-- wrapper end -->
|
2015-03-23 12:39:22 +00:00
|
|
|
|
2016-11-21 18:47:05 +00:00
|
|
|
</div><!-- #page -->
|
2015-03-23 12:39:22 +00:00
|
|
|
|
2016-11-21 18:47:05 +00:00
|
|
|
<?php wp_footer(); ?>
|
2015-03-23 12:39:22 +00:00
|
|
|
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|