/home/awneajlw/www/wp-content/themes/codz/archive.php
<?php
/**
 * The template for displaying archive pages
 *
 * @link https://codex.wordpress.org/Template_Hierarchy
 *
 * @package codz
 */

get_header(); ?>


<div id="primary" class="content-area">
	<main id="main" class="site-main">
		<?php if ( ! empty( codz_global_var( 'blog-style', '', false ) ) ) { ?>
			<?php
			include get_parent_theme_file_path( '/inc/blog/blog-' . codz_global_var( 'blog-style', '', false ) . '.php' );
			?>

		<?php } else { ?>
			<?php include get_parent_theme_file_path( '/inc/blog/blog-default.php' ); ?>
		<?php } ?>
	</main><!-- #main -->
</div><!-- #primary -->

<?php
get_footer();