mirror of
https://ghproxy.net/https://github.com/AlxMedia/blogrow.git
synced 2025-08-26 16:08:54 +08:00
37 lines
No EOL
786 B
PHP
37 lines
No EOL
786 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('entry boxed group'); ?>>
|
|
|
|
<?php get_template_part('inc/page-image'); ?>
|
|
|
|
<div class="entry-inner pad">
|
|
<div class="entry-content themeform">
|
|
<?php the_content(); ?>
|
|
<div class="clear"></div>
|
|
</div><!--/.entry-content-->
|
|
</div><!--/.entry-inner-->
|
|
|
|
</article>
|
|
|
|
<?php if ( comments_open() || get_comments_number() ) : comments_template( '/comments.php', true ); endif; ?>
|
|
|
|
<?php endwhile; ?>
|
|
|
|
</div><!--/.pad-->
|
|
</div><!--/.content-->
|
|
|
|
<?php get_sidebar(); ?>
|
|
|
|
<?php get_footer(); ?>
|