blogside/page.php

30 lines
598 B
PHP
Raw Permalink Normal View History

2016-02-03 11:28:05 +01:00
<?php get_header(); ?>
2017-03-05 21:42:58 +01:00
<div class="content">
2016-02-03 11:28:05 +01:00
<?php get_template_part('inc/page-title'); ?>
<div class="pad group">
<?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; ?>
2016-02-03 11:28:05 +01:00
<?php endwhile; ?>
</div><!--/.pad-->
2017-03-05 21:42:58 +01:00
</div><!--/.content-->
2016-02-03 11:28:05 +01:00
<?php get_sidebar(); ?>
<?php get_footer(); ?>