<?php
/**
 * Footer Layout
 *
 * @package Total WordPress Theme
 * @subpackage Partials
 * @version 4.9.5
 */

// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) {
    exit;
} ?>

<?php wpex_hook_footer_before(); ?>

<?php if ( ! function_exists( 'elementor_theme_do_location' ) || ! elementor_theme_do_location( 'footer' ) ) : ?>

	<?php if ( wpex_footer_has_widgets() ) : ?>

	    <footer id="footer" class="<?php echo esc_attr( wpex_footer_class() ); ?>"<?php wpex_schema_markup( 'footer' ); ?>>

	        <?php wpex_hook_footer_top(); ?>

	        <div id="footer-inner" class="site-footer-inner container clr">

	            <?php wpex_hook_footer_inner(); // widgets are added via this hook ?>

	        </div><!-- #footer-widgets -->

	        <?php wpex_hook_footer_bottom(); ?>

	    </footer><!-- #footer -->

	<?php endif; ?>

<?php endif; ?>

<?php wpex_hook_footer_after(); ?>