1
0
mirror of https://github.com/ascribe/wp-theme synced 2024-06-13 08:03:16 +02:00
wp-theme/home.php

29 lines
638 B
PHP
Raw Normal View History

<?php
get_header();
get_template_part( 'template', 'blogheader' );
echo '<div class="centered-content-padding">';
echo '<div class="column-container">';
echo '<div class="blog-column">';
if ( have_posts() ) {
while ( have_posts() ) {
the_post();
get_template_part( 'content', 'blog' );
}
}
else {
get_template_part( 'content', 'noposts' );
}
2015-10-02 01:48:59 +02:00
?>
<div class="nav-previous alignleft"><?php next_posts_link( 'Older posts' ); ?></div>
<div class="nav-next alignright"><?php previous_posts_link( 'Newer posts' ); ?></div>
<?php
echo '</div>';
2015-11-02 11:18:22 +01:00
//get_sidebar('blog');
echo '</div>';
echo '</div>';
get_footer();
?>