mirror of
https://gh.wpcy.net/https://github.com/AlxMedia/readspec.git
synced 2026-05-26 11:48:24 +08:00
36 lines
No EOL
778 B
PHP
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(); ?>
|