2013-07-29 00:55:10 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2013-10-12 00:02:11 +02:00
|
|
|
* The template for displaying the footer
|
2013-07-29 00:55:10 +02:00
|
|
|
*
|
2013-08-15 05:13:29 +02:00
|
|
|
* Contains footer content and the closing of the #main and #page div elements.
|
2013-07-29 00:55:10 +02:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Twenty_Fourteen
|
2013-10-12 00:02:11 +02:00
|
|
|
* @since Twenty Fourteen 1.0
|
2013-07-29 00:55:10 +02:00
|
|
|
*/
|
|
|
|
?>
|
|
|
|
|
2013-08-15 05:13:29 +02:00
|
|
|
</div><!-- #main -->
|
2013-07-29 00:55:10 +02:00
|
|
|
|
2013-08-15 05:13:29 +02:00
|
|
|
<footer id="colophon" class="site-footer" role="contentinfo">
|
2013-08-20 19:53:09 +02:00
|
|
|
|
|
|
|
<?php get_sidebar( 'footer' ); ?>
|
|
|
|
|
2013-08-15 05:13:29 +02:00
|
|
|
<div class="site-info">
|
|
|
|
<?php do_action( 'twentyfourteen_credits' ); ?>
|
2013-10-09 21:07:09 +02:00
|
|
|
<a href="<?php echo esc_url( __( 'http://wordpress.org/', 'twentyfourteen' ) ); ?>"><?php printf( __( 'Proudly powered by %s', 'twentyfourteen' ), 'WordPress' ); ?></a>
|
2013-08-15 05:13:29 +02:00
|
|
|
</div><!-- .site-info -->
|
|
|
|
</footer><!-- #colophon -->
|
|
|
|
</div><!-- #page -->
|
2013-07-29 00:55:10 +02:00
|
|
|
|
2013-08-15 05:13:29 +02:00
|
|
|
<?php wp_footer(); ?>
|
2013-07-29 00:55:10 +02:00
|
|
|
</body>
|
|
|
|
</html>
|