35 lines
1.1 KiB
PHP
35 lines
1.1 KiB
PHP
<?php
|
|
/*
|
|
Template Name: List Subpages
|
|
*/
|
|
get_header(); ?>
|
|
<?php roots_content_before(); ?>
|
|
<div id="content" class="<?php echo roots_container_class; ?>">
|
|
<?php roots_main_before(); ?>
|
|
<div id="main" class="<?php echo roots_container_class; ?>" role="main">
|
|
<div class="container">
|
|
<?php roots_loop_before(); ?>
|
|
<?php get_template_part('loop', 'page'); ?>
|
|
<?php roots_loop_after(); ?>
|
|
<?php
|
|
$children = wp_list_pages('title_li=&child_of='.$post->ID.'&echo=0');
|
|
if ($children) { ?>
|
|
<ul>
|
|
<?php echo $children; ?>
|
|
</ul>
|
|
<?php } ?>
|
|
</div>
|
|
</div><!-- /#main -->
|
|
<?php roots_main_after(); ?>
|
|
<?php roots_sidebar_before(); ?>
|
|
<aside id="sidebar" class="<?php echo get_option('roots_sidebar_class'); ?>" role="complementary">
|
|
<?php roots_sidebar_inside_before(); ?>
|
|
<div class="container">
|
|
<?php get_sidebar(); ?>
|
|
</div>
|
|
<?php roots_sidebar_inside_after(); ?>
|
|
</aside><!-- /#sidebar -->
|
|
<?php roots_sidebar_after(); ?>
|
|
</div><!-- /#content -->
|
|
<?php roots_content_after(); ?>
|
|
<?php get_footer(); ?>
|