2015-09-26 04:08:27 +02:00
|
|
|
<?php
|
2016-01-16 18:46:45 +01:00
|
|
|
get_header();
|
|
|
|
get_template_part( 'template', 'blogheader' );
|
2015-09-26 04:08:27 +02:00
|
|
|
|
2016-01-16 18:46:45 +01:00
|
|
|
echo '<div class="blog-column row row--content">';
|
2015-09-26 04:08:27 +02:00
|
|
|
|
2016-01-16 18:46:45 +01:00
|
|
|
if ( have_posts() ) {
|
|
|
|
while ( have_posts() ) {
|
|
|
|
the_post();
|
|
|
|
|
|
|
|
get_template_part( 'content', 'blog' );
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
get_template_part( 'content', 'noposts' );
|
2015-12-17 15:55:34 +01:00
|
|
|
}
|
2015-09-26 04:08:27 +02:00
|
|
|
|
2016-01-16 18:46:45 +01:00
|
|
|
echo '</div>';
|
|
|
|
|
|
|
|
get_footer();
|
2015-12-17 15:55:34 +01:00
|
|
|
?>
|