<?php
/**
 * The template for displaying archive pages
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
 *
 * @package gralbcn
 */

get_header(); ?>
<div id="blog-header">
	<div class="container">
		<div class="twelve columns">
			<h1><?php echo esc_html__( 'Archives:', 'gralbcn' ); ?> <?php single_month_title( '&nbsp;' ); ?></h1>
		</div>
	</div>
</div>
<div id="content">
	<div class="container blog-listing">
		<div class="nine columns">
			<?php get_template_part( 'includes/postloop' ); ?>
		</div>
		<?php get_sidebar(); ?>
	</div>
</div>
<?php get_footer(); ?>