File: /www/wwwroot/www.movieloversky.com/wp-content/themes/filmax/front-page.php
<?php
/**
* The Front Page template file.
*
* @package WordPress
* @subpackage FILMAX
* @since FILMAX 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 (filmax_is_on(filmax_get_theme_option('front_page_enabled'))) {
if ( have_posts() ) the_post();
$filmax_sections = filmax_array_get_keys_by_value(filmax_get_theme_option('front_page_sections'), 1, false);
if (is_array($filmax_sections)) {
foreach ($filmax_sections as $filmax_section) {
get_template_part("front-page/section", $filmax_section);
}
}
// Else if this page is blog archive
} else if (is_page_template('blog.php')) {
get_template_part('blog');
// Else - display native page content
} else {
get_template_part('page');
}
// Else get index template to show posts
} else {
get_template_part('index');
}
get_footer();
?>