<?php
/**
 * The template for displaying category 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__( 'Tag:', 'gralbcn' ); ?> <?php single_tag_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(); ?>