File: /var/www/html/triad-infosec/wp-content/themes/genesis-block-theme/footer.php
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after
*
* @package Genesis Block Theme
*/
?>
</div><!-- #content -->
</div><!-- #page .container -->
<footer id="colophon" class="site-footer">
<div class="container">
<?php if ( is_active_sidebar( 'footer-1' ) || is_active_sidebar( 'footer-2' ) || is_active_sidebar( 'footer-3' ) ) : ?>
<div class="footer-widgets">
<h2 class="screen-reader-text"><?php esc_html_e( 'Footer', 'genesis-block-theme' ); ?></h2>
<?php if ( is_active_sidebar( 'footer-1' ) ) { ?>
<div class="footer-column">
<?php dynamic_sidebar( 'footer-1' ); ?>
</div>
<?php } ?>
<?php if ( is_active_sidebar( 'footer-2' ) ) { ?>
<div class="footer-column">
<?php dynamic_sidebar( 'footer-2' ); ?>
</div>
<?php } ?>
<?php if ( is_active_sidebar( 'footer-3' ) ) { ?>
<div class="footer-column">
<?php dynamic_sidebar( 'footer-3' ); ?>
</div>
<?php } ?>
</div>
<?php endif; ?>
<div class="footer-bottom">
<div class="footer-tagline">
<div class="site-info">
<?php echo genesis_block_theme_filter_footer_text(); ?>
</div>
</div><!-- .footer-tagline -->
<?php if ( has_nav_menu( 'footer' ) ) { ?>
<nav class="footer-navigation" aria-label="<?php esc_attr_e( 'Footer Menu', 'genesis-block-theme' ); ?>">
<?php
wp_nav_menu(
array(
'theme_location' => 'footer',
'depth' => 1,
'fallback_cb' => false,
)
);
?>
</nav><!-- .footer-navigation -->
<?php } ?>
</div><!-- .footer-bottom -->
</div><!-- .container -->
</footer><!-- #colophon -->
<?php wp_footer(); ?>
</body>
</html>