61 lines
2.5 KiB
PHP
61 lines
2.5 KiB
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">
|
||
|
<div id ="logos">
|
||
|
<p><?php _e('A project of: ','soundmap_theme') ?><br>
|
||
|
<a href="http://www.audio-lab.org"><img src="<?php echo get_template_directory_uri(); ?>/images/audiolab.png"></a></p>
|
||
|
<p><?php _e('Colaborators: ','soundmap_theme') ?><br>
|
||
|
<a href="http://www.gipuzkoa.eus/" style="display:none;"><img src="<?php echo get_template_directory_uri(); ?>/images/gipuzkoa.png"></a>
|
||
|
<a href="http://www.re-tramontana.org/"><img height=35px src="<?php echo get_template_directory_uri(); ?>/images/tramontana.jpg"></a>
|
||
|
<a href="http://www.eke.org" style="display:none;"><img src="<?php echo get_template_directory_uri(); ?>/images/eke.jpg"></a></p>
|
||
|
</div>
|
||
|
<div class="clear"></div>
|
||
|
<?php do_action( 'soundmap_theme_credits' ); ?>
|
||
|
<a href="<?php echo esc_url( __( 'http://wordpress.org/', 'soundmap_theme' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'soundmap_theme' ); ?>" rel="generator"><?php printf( __( 'Proudly powered by %s', 'soundmap_theme' ), 'WordPress' ); ?></a>
|
||
|
<a href="<?php echo esc_url( __( 'http://wordpress.org/', 'soundmap_theme' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'soundmap_theme' ); ?>" rel="generator"><?php printf( __( 'Proudly powered by %s', 'soundmap_theme' ), 'WordPress' ); ?></a>
|
||
|
</div>
|
||
|
</footer><!-- #colophon -->
|
||
|
</div><!-- #page -->
|
||
|
|
||
|
<!-- Piwik -->
|
||
|
<script type="text/javascript">
|
||
|
var _paq = _paq || [];
|
||
|
_paq.push(['trackPageView']);
|
||
|
_paq.push(['enableLinkTracking']);
|
||
|
(function() {
|
||
|
var u="http://analytics.audio-lab.org/";
|
||
|
_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="http://analytics.audio-lab.org/piwik.php?idsite=1" style="border:0;" alt="" /></p></noscript>
|
||
|
<!-- End Piwik Code -->
|
||
|
|
||
|
<?php wp_footer(); ?>
|
||
|
|
||
|
</body>
|
||
|
</html>
|