mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 23:21:07 +01:00
44 lines
1.8 KiB
PHP
44 lines
1.8 KiB
PHP
<?php
|
|
/**
|
|
* Theme's Footer
|
|
*
|
|
*
|
|
* @file footer.php
|
|
* @package WordPress
|
|
* @subpackage Shell
|
|
* @author Emil Uzelac, nofearinc
|
|
* @copyright 2003 - 2012 ThemeID, 2013 DevWP
|
|
* @license license.txt
|
|
* @version Release: 1.0
|
|
* @filesource wp-content/themes/shell-lite/footer.php
|
|
* @link http://codex.wordpress.org/Theme_Development#Footer_.28footer.php.29
|
|
* @since available since Release 1.0
|
|
*/
|
|
?>
|
|
</div><!-- end of #wrapper -->
|
|
<?php shell_wrapper_end(); // after wrapper hook ?>
|
|
</div><!-- end of #container -->
|
|
<?php shell_container_end(); // after container hook ?>
|
|
|
|
<div id="footer">
|
|
<div id="footer-wrapper">
|
|
<div class="grid col-300 copyright">
|
|
<?php esc_attr_e('©', 'shell'); ?> <?php echo date('Y'); ?><a href="<?php echo home_url('/') ?>" title="<?php echo esc_attr(get_bloginfo('name', 'display')); ?>">
|
|
<?php bloginfo('name'); ?>
|
|
</a>
|
|
</div><!-- end of .copyright -->
|
|
|
|
<div class="grid col-300 scroll-top"><a href="#scroll-top" title="<?php esc_attr_e( 'scroll to top', 'shell' ); ?>"><?php _e( '↑', 'shell' ); ?></a></div>
|
|
|
|
<div class="grid col-300 fit powered">
|
|
<p><a href="<?php echo esc_url(__('http://wordpress.org/','shell'));?>" title="<?php esc_attr_e('WordPress', 'shell'); ?>" rel="generator" target="_blank"><?php
|
|
printf(__('Powered by %s', 'shell'), 'WordPress');?></a> <a href="<?php echo esc_url(__('http://devwp.eu/', 'shell'));?>" title="<?php esc_attr_e('DevWP', 'shell'); ?>" rel="designer" target="_blank"><?php
|
|
printf(__('& %s', 'shell'), 'DevWP');?></a></p>
|
|
</div><!-- end .powered -->
|
|
</div><!-- end #footer-wrapper -->
|
|
</div><!-- end #footer -->
|
|
|
|
<?php wp_footer(); ?>
|
|
</body>
|
|
</html>
|