File: /home/dothetest.co.uk/public_html/wp-content/themes/matthew-magazine-blog/front-page.php
<?php
/**
* The template for displaying archive pages
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package Matthew_Magazine_Blog
*/
get_header();
?>
<main id="content">
<?php
if ( is_front_page() && ! is_home() && crt_manage_plugins_is_active()) :
do_action('crt_manage_theme_sections');
elseif ( is_front_page() && is_home() || !crt_manage_plugins_is_active()) :
require get_template_directory() . '/home.php';
endif;
?>
</main>
<?php
get_footer();