forked from ItalyStrap/italystrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.php
33 lines (27 loc) · 842 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
<?php
/**
* The page template file.
*/
get_header(); ?>
<!-- Main Content -->
<section id="page">
<div class="container">
<div class="row">
<div class="col-md-8">
<?php
create_breadcrumbs();
if (have_posts()) : while (have_posts()) : the_post();
get_template_part( 'loops/content', 'page' );
endwhile;
else:
get_template_part( 'loops/content', 'none');
endif;
?>
<hr>
<?php comments_template(); ?>
</div><!-- / .col-md-8 -->
<?php get_sidebar(); ?>
</div><!-- / .row -->
</div><!-- / .container -->
</section><!-- / #page -->
<?php get_footer(); ?>