forked from friendica/friendica-wp-theme
15 lines
395 B
PHP
15 lines
395 B
PHP
<?php get_header(); ?>
|
|
<div class="row">
|
|
<div class="8u 12u$(medium)">
|
|
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
|
|
<?php get_template_part( 'entry' ); ?>
|
|
<?php comments_template(); ?>
|
|
<?php endwhile; endif; ?>
|
|
<?php get_template_part( 'nav', 'below' ); ?>
|
|
</div>
|
|
<?php get_sidebar(); ?>
|
|
</div>
|
|
|
|
|
|
<?php get_footer(); ?>
|