-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.php
35 lines (24 loc) · 924 Bytes
/
page.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
<?php get_header(); the_post(); ?>
<div id="page-header-outer" class="row-outer">
<div class="container">
<div class="row">
<header class="entry-header text-center">
<h1 class="entry-title" itemprop="headline"><?php the_title(); ?></h1>
</header>
</div> <!-- /row -->
</div> <!-- /container -->
</div> <!-- /page-header-outer -->
<div id="page-content-outer" class="row-outer">
<div class="container">
<div class="row">
<div class="col-md-8">
<?php if ( function_exists('custom_breadcrumb') ) { custom_breadcrumb(); } ?>
<article id="post-<?php the_ID(); ?>" <?php post_class('clearfix'); ?> role="article" itemscope itemtype="http://schema.org/BlogPosting">
<?php the_content(); ?>
</article>
</div> <!-- /col -->
<?php get_sidebar(); ?>
</div> <!-- /row -->
</div> <!-- /container -->
</div> <!-- /page-content-outer -->
<?php get_footer(); ?>