mirror of
https://gh.wpcy.net/https://github.com/AlxMedia/readline.git
synced 2026-07-15 11:06:28 +08:00
31 lines
No EOL
615 B
PHP
31 lines
No EOL
615 B
PHP
<?php
|
|
/*
|
|
Template Name: Child Menu
|
|
*/
|
|
?>
|
|
<?php get_header(); ?>
|
|
|
|
<div class="content">
|
|
<div class="container-inner-inner">
|
|
|
|
<?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; ?>
|
|
|
|
<?php endwhile; ?>
|
|
|
|
</div><!--/.container-inner-inner-->
|
|
</div><!--/.content-->
|
|
|
|
<?php get_sidebar(); ?>
|
|
|
|
<?php get_footer(); ?>
|