After reviewing the code more, it appears the problem is coming from this block of code
<?php get_header(); ?>
<div class="container-fluid">
<?php
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
$args = array(
'post_type' => 'post',
'paged' => $paged
);
query_posts($args);
get_template_part('index', 'masonry');
get_footer();?>
Thanks. I’ll look that over.
It appears that the problem is coming from this block of code
<?php get_header(); ?>
<div class="container-fluid">
<?php
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
$args = array(
'post_type' => 'post',
'paged' => $paged
);
query_posts($args);
get_template_part('index', 'masonry');
get_footer();?>