File "footer.php"
Full Path: /home/pumpbmko/public_html/wp-content/themes/pure-portfolio/inc/tgmpa/footer.php
File size: 1.98 KB
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* The template for displaying the footer
*
* Contains the closing of the #content div and all content after.
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package Pure_Portfolio
*/
?>
<?php if ( ! is_front_page() || is_home() ) { ?>
</div>
</div>
</div><!-- #content -->
<?php } ?>
<footer id="colophon" class="site-footer">
<?php if ( is_active_sidebar( 'footer-widget' ) || is_active_sidebar( 'footer-widget-2' ) || is_active_sidebar( 'footer-widget-3' ) || is_active_sidebar( 'footer-widget-4' ) ) : ?>
<div class="site-footer-top">
<div class="ascendoor-wrapper">
<div class="footer-widgets-wrapper">
<?php for ( $i = 1; $i <= 4; $i++ ) { ?>
<div class="footer-widget-single">
<?php dynamic_sidebar( 'footer-widget-' . $i ); ?>
</div>
<?php } ?>
</div>
</div>
</div><!-- .footer-top -->
<?php endif; ?>
<div class="site-footer-bottom">
<div class="ascendoor-wrapper">
<div class="site-footer-bottom-wrapper">
<div class="site-info">
<?php
/**
* Hook: pure_portfolio_footer_copyright.
*
* @hooked - pure_portfolio_output_footer_copyright_content - 10
*/
do_action( 'pure_portfolio_footer_copyright' );
?>
</div><!-- .site-info -->
</div>
</div>
</div>
</footer><!-- #colophon -->
<?php
$is_scroll_top_active = get_theme_mod( 'pure_portfolio_scroll_top', true );
if ( $is_scroll_top_active ) :
?>
<a href="#" id="scroll-to-top" class="pure-portfolio-scroll-to-top magic-hover magic-hover__square">
<i class="fas fa-chevron-up"></i>
<div class="progress-wrap">
<svg class="progress-circle svg-content" width="100%" height="100%" viewBox="-1 -1 102 102">
<path d="M50,1 a49,49 0 0,1 0,98 a49,49 0 0,1 0,-98"/>
</svg>
</div>
</a>
<?php
endif;
?>
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>