readspec/page.php
Alexander Agnarson 0c43ab2ea7 Initial commit
2021-03-08 18:46:29 +01:00

36 lines
No EOL
778 B
PHP

<?php get_header(); ?>
<div class="content">
<?php get_template_part('inc/page-title'); ?>
<div class="content-inner">
<div class="pad group">
<?php while ( have_posts() ): the_post(); ?>
<article <?php post_class('group'); ?>>
<?php get_template_part('inc/page-image'); ?>
<div class="entry themeform">
<?php the_content(); ?>
<div class="clear"></div>
</div><!--/.entry-->
</article>
<?php if ( get_theme_mod( 'page-comments', 'off' ) == 'on' ) { comments_template('/comments.php',true); } ?>
<?php endwhile; ?>
</div><!--/.pad-->
</div><!--/.content-inner-->
<?php get_template_part('inc/subfooter'); ?>
</div><!--/.content-->
<?php get_sidebar(); ?>
<?php get_footer(); ?>