readline/page.php
Alexander Agnarson d65242a5c3 Initial commit
2019-02-22 16:29:24 +01:00

26 lines
No EOL
573 B
PHP

<?php get_header(); ?>
<div class="content">
<div class="container-inner-inner">
<?php while ( have_posts() ): the_post(); ?>
<article <?php post_class('group'); ?>>
<div class="entry themeform">
<?php the_content(); ?>
<div class="clear"></div>
</div><!--/.entry-->
</article>
<?php if ( comments_open() || get_comments_number() ) : comments_template( '/comments.php', true ); endif; ?>
<?php endwhile; ?>
</div><!--/.container-inner-inner-->
</div><!--/.content-->
<?php get_sidebar(); ?>
<?php get_footer(); ?>