-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsubpage.php
38 lines (36 loc) · 1.11 KB
/
subpage.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
/*
Template Name: Subpage
Description: Use if a page belongs under another page.
*/
?>
<?php get_header(); ?>
<div id="main">
<div id="title_bar" class="container">
<div class="row">
<div class="col-sm-8">
<header><h1><?php echo get_the_title($post->post_parent);?></h1></header>
<?php if (function_exists('dimox_breadcrumbs')) dimox_breadcrumbs(); ?>
</div><!-- col-sm-8 -->
<div class="col-sm-4">
<div class="header-search"><?php get_search_form(); ?></div>
</div><!-- col-sm-4 -->
</div><!-- row -->
</div><!-- container -->
<div id="content" class="container">
<div class="row">
<div id="sidebar" class="col-sm-3">
<?php get_sidebar(); ?>
</div>
<div id="content_area" class="col-sm-9">
<h2 class="subpage-title"><?php the_title(); ?></h2>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php the_content(__('(more...)')); ?>
<?php endwhile; else: ?>
<?php _e('Sorry, no posts matched your criteria.'); ?>
<?php endif; ?>
</div><!-- col-sm-9 -->
</div><!-- row -->
</div><!-- container -->
</div><!-- main -->
<?php get_footer(); ?>