1er commit
1er version
This commit is contained in:
77
footer.php
Normal file
77
footer.php
Normal file
@@ -0,0 +1,77 @@
|
||||
<?php
|
||||
/**
|
||||
* The template for displaying 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 Twenty Ten 1.0
|
||||
*/
|
||||
?>
|
||||
</div><!-- #main -->
|
||||
|
||||
<div id="footer" role="contentinfo">
|
||||
<div id="colophon">
|
||||
|
||||
<?php
|
||||
/* A sidebar in the footer? Yep. You can can customize
|
||||
* your footer with four columns of widgets.
|
||||
*/
|
||||
get_sidebar( 'footer' );
|
||||
?>
|
||||
|
||||
<div id="site-info">
|
||||
<!--a href="<?php echo home_url( '/' ) ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">
|
||||
<?php //bloginfo( 'name' ); ?>
|
||||
</a-->
|
||||
<?php wp_nav_menu( array( 'container' => 'none' ) ); ?>
|
||||
</div><!-- #site-info -->
|
||||
|
||||
<div id="site-generator">
|
||||
<?php do_action( 'twentyten_credits' ); ?>
|
||||
<a href="<?php echo esc_url( __('https://wordpress.org/', 'twentyten-child') ); ?>"
|
||||
title="<?php esc_attr_e('Semantic Personal Publishing Platform', 'twentyten-child'); ?>" rel="generator">
|
||||
<?php printf( __('Proudly powered by %s.', 'twentyten-child'), 'WordPress' ); ?>
|
||||
</a>
|
||||
</div><!-- #site-generator -->
|
||||
|
||||
</div><!-- #colophon -->
|
||||
</div><!-- #footer -->
|
||||
|
||||
</div><!-- #wrapper -->
|
||||
|
||||
<script type="text/javascript">
|
||||
var _paq = _paq || [];
|
||||
_paq.push(['trackPageView']);
|
||||
_paq.push(['enableLinkTracking']);
|
||||
(function() {
|
||||
var u="//<?php echo $_SERVER[SERVER_NAME]; ?>/piwik/";
|
||||
_paq.push(['setTrackerUrl', u+'piwik.php']);
|
||||
_paq.push(['setSiteId', 1]);
|
||||
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
|
||||
g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
|
||||
})();
|
||||
</script>
|
||||
<noscript><p><img src="//<?php echo $_SERVER[SERVER_NAME]; ?>/piwik/piwik.php?idsite=1" style="border:0;" alt="" /></p></noscript>
|
||||
<!-- End Piwik Code -->
|
||||
|
||||
<!--script type="text/javascript" src="<?php echo get_stylesheet_directory_uri(); ?>/js/jquery.swipebox.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
$( document ).ready(function() {
|
||||
|
||||
/* Basic Gallery */
|
||||
$( '.swipebox' ).swipebox();
|
||||
});
|
||||
</script-->
|
||||
<?php
|
||||
/* Always have wp_footer() just before the closing </body>
|
||||
* tag of your theme, or you will break many plugins, which
|
||||
* generally use this hook to reference JavaScript files.
|
||||
*/
|
||||
|
||||
wp_footer();
|
||||
?>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user