mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 23:21:07 +01:00
48 lines
1.3 KiB
PHP
48 lines
1.3 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* The template for displaying the footer.
|
||
|
*
|
||
|
* Contains the closing of the #content div and all content after
|
||
|
*
|
||
|
* @package understrap
|
||
|
*/
|
||
|
|
||
|
$the_theme = wp_get_theme();
|
||
|
$container = get_theme_mod( 'understrap_container_type' );
|
||
|
?>
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
<div class="wrapper bg-dark text-light" id="wrapper-footer">
|
||
|
<div class="container">
|
||
|
<div class="row align-items-start">
|
||
|
<?php get_sidebar( 'footer1' ); ?>
|
||
|
<?php get_sidebar( 'footer2' ); ?>
|
||
|
<?php get_sidebar( 'footer3' ); ?>
|
||
|
<div class="col footer-image-1 d-none d-lg-block">
|
||
|
<img src="<?php echo get_template_directory_uri(); ?>/images/puntal.png" alt="">
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div><!-- wrapper end -->
|
||
|
<div class="wrapper-colophon text-light" id="wrapper-colophon">
|
||
|
<div class="<?php echo esc_attr( $container ); ?>">
|
||
|
<footer class="site-footer" id="colophon">
|
||
|
<div class="site-info">
|
||
|
<a rel="home" href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" itemprop="url">
|
||
|
<?php bloginfo( 'name' ); ?>,
|
||
|
<?php echo date('Y')?>
|
||
|
</a>
|
||
|
</div><!-- .site-info -->
|
||
|
</footer><!-- #colophon -->
|
||
|
</div><!-- container end -->
|
||
|
|
||
|
</div><!-- #page we need this extra closing tag here -->
|
||
|
|
||
|
<?php wp_footer(); ?>
|
||
|
|
||
|
</body>
|
||
|
|
||
|
</html>
|