File: /home/zwafgyp/dodolodge-net/wp-content/themes/hotel-wp/archive.php
<?php
/**
* The template for displaying archive pages.
*
* @link https://codex.wordpress.org/Template_Hierarchy
*
*/
$blog_layout = get_theme_mod( 'archive_post_layout', 'masonry_layout' );
?>
<?php if ( have_posts() ) :?>
<div class="row">
<div class="blog-content <?php echo esc_attr( $blog_layout ); ?>">
<?php
/* Start the Loop */
while ( have_posts() ) : the_post();
get_template_part( 'templates/template-parts/content' );
endwhile;
?>
</div><!-- .blog-content.blog-list -->
</div><!-- .row -->
<?php
thim_paging_nav();
else :
get_template_part( 'templates/template-parts/content', 'none' );
endif;