blogrow/page-templates/child-menu.php
2018-09-14 17:52:25 +02:00

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(); ?>