2010-03-30 00:03:15 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* The template used to display the footer
|
|
|
|
*
|
|
|
|
* Contains the closing of the id=main div and all content
|
|
|
|
* after. Calls sidebar-footer.php for bottom widgets
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Twenty Ten
|
|
|
|
* @since 3.0.0
|
|
|
|
*/
|
|
|
|
?>
|
2010-02-07 17:16:26 +01:00
|
|
|
</div><!-- #main -->
|
2010-02-08 18:59:08 +01:00
|
|
|
|
2010-02-07 17:16:26 +01:00
|
|
|
<div id="footer">
|
|
|
|
<div id="colophon">
|
2010-02-08 18:59:08 +01:00
|
|
|
|
2010-02-14 02:00:22 +01:00
|
|
|
<?php get_sidebar( 'footer' ); ?>
|
2010-02-08 18:59:08 +01:00
|
|
|
|
2010-02-07 17:16:26 +01:00
|
|
|
<div id="site-info">
|
2010-05-09 11:29:06 +02:00
|
|
|
<a href="<?php echo home_url( '/' ) ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">
|
|
|
|
<?php bloginfo( 'name' ); ?>
|
|
|
|
</a>
|
2010-02-07 17:16:26 +01:00
|
|
|
</div>
|
2010-02-08 18:59:08 +01:00
|
|
|
|
2010-02-07 17:16:26 +01:00
|
|
|
<div id="site-generator">
|
2010-05-09 11:29:06 +02:00
|
|
|
<?php do_action( 'twentyten_credits' ); ?>
|
|
|
|
<a href="<?php echo esc_url( __('http://wordpress.org/', 'twentyten') ); ?>"
|
|
|
|
title="<?php esc_attr_e('Semantic Personal Publishing Platform', 'twentyten'); ?>" rel="generator">
|
|
|
|
<?php printf( __('Proudly powered by %s.', 'twentyten'), 'WordPress' ); ?>
|
|
|
|
</a>
|
2010-02-07 17:16:26 +01:00
|
|
|
</div>
|
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
|
|
|
|
|
|
|
<?php wp_footer(); ?>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|