21c7b3c8d3
* Add explanatory comments in all templates, following Twenty Ten's example * Stick with twentyeleven_ for prefixing filter names * Use post format content templates in search results * First pass at adding a template for adding a sidebar to pages * Add a featured post header to standard sticky posts * Style fixes: print media, comment styles for pages with sidebars, color of meta links on image post format git-svn-id: https://develop.svn.wordpress.org/trunk@17802 602fd350-edb4-49c9-b593-d223f7449a82
33 lines
754 B
PHP
33 lines
754 B
PHP
<?php
|
|
/**
|
|
* The template for displaying the footer.
|
|
*
|
|
* Contains the closing of the id=main div and all content after
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Twenty Eleven
|
|
* @since Twenty Eleven 1.0
|
|
*/
|
|
?>
|
|
|
|
</div><!-- #main -->
|
|
|
|
<footer id="colophon" role="contentinfo">
|
|
|
|
<?php
|
|
/* A sidebar in the footer? Yep. You can can customize
|
|
* your footer with three columns of widgets.
|
|
*/
|
|
get_sidebar( 'footer' );
|
|
?>
|
|
|
|
<div id="site-generator">
|
|
<a href="http://wordpress.org/" rel="generator">Proudly powered by WordPress</a><span class="sep"> | </span><?php printf( __( 'Theme: %1$s.', 'twentyeleven' ), 'Twenty Eleven' ); ?>
|
|
</div>
|
|
</footer><!-- #colophon -->
|
|
</div><!-- #page -->
|
|
|
|
<?php wp_footer(); ?>
|
|
|
|
</body>
|
|
</html>
|