<div class="boxcontainer">
<?php $ym_ = "";
if ( have_posts() ) :
while ( have_posts() ) : the_post();
$ym = get_the_date('Ym', $post->ID);
if ( $ym_ != $ym ){
echo '<h3 class="pinbox">'.get_the_date('F Y', $post->ID).'</h3>';}
get_template_part('pinbox', get_post_format());
$ym_ = $ym;
endwhile;
endif; ?>
</div>