2010-03-30 00:03:15 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2013-09-25 19:04:10 +02:00
|
|
|
* Template for displaying the footer
|
2010-03-30 00:03:15 +02:00
|
|
|
*
|
|
|
|
* Contains the closing of the id=main div and all content
|
2011-12-16 18:13:16 +01:00
|
|
|
* after. Calls sidebar-footer.php for bottom widgets.
|
2010-03-30 00:03:15 +02:00
|
|
|
*
|
|
|
|
* @package WordPress
|
2010-05-16 19:10:21 +02:00
|
|
|
* @subpackage Twenty_Ten
|
2010-05-17 08:36:11 +02:00
|
|
|
* @since Twenty Ten 1.0
|
2010-03-30 00:03:15 +02:00
|
|
|
*/
|
|
|
|
?>
|
2010-02-07 17:16:26 +01:00
|
|
|
</div><!-- #main -->
|
2010-02-08 18:59:08 +01:00
|
|
|
|
2010-05-10 23:10:12 +02:00
|
|
|
<div id="footer" role="contentinfo">
|
2010-02-07 17:16:26 +01:00
|
|
|
<div id="colophon">
|
2010-02-08 18:59:08 +01:00
|
|
|
|
2010-05-17 08:36:11 +02:00
|
|
|
<?php
|
2013-10-09 22:39:09 +02:00
|
|
|
/*
|
2013-09-25 19:04:10 +02:00
|
|
|
* A sidebar in the footer? Yep. You can can customize
|
2010-05-17 08:36:11 +02:00
|
|
|
* your footer with four columns of widgets.
|
|
|
|
*/
|
|
|
|
get_sidebar( 'footer' );
|
|
|
|
?>
|
2010-02-08 18:59:08 +01:00
|
|
|
|
2010-02-07 17:16:26 +01:00
|
|
|
<div id="site-info">
|
2010-11-19 06:37:47 +01:00
|
|
|
<a href="<?php echo home_url( '/' ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">
|
2010-05-09 11:29:06 +02:00
|
|
|
<?php bloginfo( 'name' ); ?>
|
|
|
|
</a>
|
2010-05-21 20:56:27 +02:00
|
|
|
</div><!-- #site-info -->
|
2010-02-08 18:59:08 +01:00
|
|
|
|
2010-02-07 17:16:26 +01:00
|
|
|
<div id="site-generator">
|
2013-09-25 19:04:10 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Fires before the Twenty Ten credits in the footer.
|
|
|
|
*
|
|
|
|
* @since Twenty Ten 1.0
|
|
|
|
*/
|
|
|
|
do_action( 'twentyten_credits' ); ?>
|
2012-10-12 18:13:37 +02:00
|
|
|
<a href="<?php echo esc_url( __( 'http://wordpress.org/', 'twentyten' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentyten' ); ?>"><?php printf( __( 'Proudly powered by %s.', 'twentyten' ), 'WordPress' ); ?></a>
|
2010-05-21 20:56:27 +02:00
|
|
|
</div><!-- #site-generator -->
|
2010-02-08 18:59:08 +01:00
|
|
|
|
2010-02-07 17:16:26 +01:00
|
|
|
</div><!-- #colophon -->
|
|
|
|
</div><!-- #footer -->
|
2010-02-08 18:59:08 +01:00
|
|
|
|
|
|
|
</div><!-- #wrapper -->
|
2010-02-07 17:16:26 +01:00
|
|
|
|
2010-05-21 20:56:27 +02:00
|
|
|
<?php
|
2013-10-09 22:39:09 +02:00
|
|
|
/*
|
2013-09-25 19:04:10 +02:00
|
|
|
* Always have wp_footer() just before the closing </body>
|
2010-05-21 20:56:27 +02:00
|
|
|
* tag of your theme, or you will break many plugins, which
|
|
|
|
* generally use this hook to reference JavaScript files.
|
|
|
|
*/
|
2010-02-07 17:16:26 +01:00
|
|
|
|
2010-05-21 20:56:27 +02:00
|
|
|
wp_footer();
|
|
|
|
?>
|
2010-02-07 17:16:26 +01:00
|
|
|
</body>
|
|
|
|
</html>
|