Current File : /home/mdkeenpw/www/wp-content/themes/globallogistics/front-page.php
<?php
/**
 * The Front Page template file.
 *
 * @package GLOBALLOGISTICS
 * @since GLOBALLOGISTICS 1.0.31
 */

get_header();

// If front-page is a static page
if ( get_option( 'show_on_front' ) == 'page' ) {

	// If Front Page Builder is enabled - display sections
	if ( globallogistics_is_on( globallogistics_get_theme_option( 'front_page_enabled', false ) ) ) {

		if ( have_posts() ) {
			the_post();
		}

		$globallogistics_sections = globallogistics_array_get_keys_by_value( globallogistics_get_theme_option( 'front_page_sections' ) );
		if ( is_array( $globallogistics_sections ) ) {
			foreach ( $globallogistics_sections as $globallogistics_section ) {
				get_template_part( apply_filters( 'globallogistics_filter_get_template_part', 'front-page/section', $globallogistics_section ), $globallogistics_section );
			}
		}

		// Else if this page is a blog archive
	} elseif ( is_page_template( 'blog.php' ) ) {
		get_template_part( apply_filters( 'globallogistics_filter_get_template_part', 'blog' ) );

		// Else - display a native page content
	} else {
		get_template_part( apply_filters( 'globallogistics_filter_get_template_part', 'page' ) );
	}

	// Else get the template 'index.php' to show posts
} else {
	get_template_part( apply_filters( 'globallogistics_filter_get_template_part', 'index' ) );
}

get_footer();