-
Notifications
You must be signed in to change notification settings - Fork 1
/
page.php
43 lines (31 loc) · 1.04 KB
/
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
36
37
38
39
40
41
42
43
<?php
/*
* Single page . It can be boxed or full width.
*/
get_header(); ?>
<?php
if (have_posts()):while (have_posts()):the_post(); ?>
<!-- This section contains the full item content+ sidebars -->
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<!-- Title -->
<section id="single-title-container">
<?php get_template_part('/framework/partials/common-partials/title'); ?>
</section>
<!-- Breadcrumb -->
<section id="single-breadcrumb-container">
<div class="container">
<div class="row">
<div class="col-md-12">
<?php get_template_part('/framework/partials/common-partials/breadcrumb'); ?>
</div>
</div>
</div>
</section>
<!-- Content -->
<?php
get_template_part('/framework/partials/main-content/boxed-9-content');
?>
</article>
<!-- Full section ends here -->
<?php endwhile; endif;
get_footer();