File: /home/dkfounda/public_html/wp-content/themes/benevolent/front-page.php
<?php
/**
* @link https://codex.wordpress.org/Template_Hierarchy
*
* @package Benevolent
*/
$enabled_sections = benevolent_get_sections();
if ( 'posts' == get_option( 'show_on_front' ) ) {
include( get_home_template() );
}elseif( $enabled_sections ){
get_header();
foreach( $enabled_sections as $section ){ ?>
<section class="<?php echo esc_attr( $section['class'] ); ?>" id="<?php echo esc_attr( $section['id'] ); ?>">
<?php get_template_part( 'sections/section', esc_attr( $section['id'] ) ); ?>
</section>
<?php
}
get_footer();
}else{
include( get_page_template() );
}