mirror of
https://gh.wpcy.net/https://github.com/AlxMedia/squareread.git
synced 2026-07-15 11:16:24 +08:00
37 lines
No EOL
695 B
PHP
37 lines
No EOL
695 B
PHP
<?php
|
|
/*
|
|
Template Name: Child Menu
|
|
*/
|
|
?>
|
|
<?php get_header(); ?>
|
|
|
|
<div class="content">
|
|
|
|
<div class="pad group">
|
|
|
|
<?php get_template_part('inc/page-title'); ?>
|
|
|
|
<?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-->
|
|
|
|
<?php get_sidebar(); ?>
|
|
|
|
<?php get_footer(); ?>
|