mirror of
https://gh.wpcy.net/https://github.com/AlxMedia/readspec.git
synced 2026-07-16 11:17:01 +08:00
41 lines
No EOL
819 B
PHP
41 lines
No EOL
819 B
PHP
<?php
|
|
/*
|
|
Template Name: Child Menu
|
|
*/
|
|
?>
|
|
<?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(); ?>
|