-
Notifications
You must be signed in to change notification settings - Fork 6
/
page.php
34 lines (31 loc) · 1001 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
<?php
/**
* The template for displaying all pages
*
* This is the template that displays all pages by default.
* Please note that this is the WordPress construct of pages
* and that other 'pages' on your WordPress site may use a
* different template.
*
* @link https://codex.wordpress.org/Template_Hierarchy
*
* @package Acajou
*/
get_header(); ?>
<section class="row single-row">
<section id="breadcrumbs" class="clearfix">
<div class="breadcrumbs row">
<?php if (function_exists('acajou_custom_breadcrumbs')) acajou_custom_breadcrumbs(); ?>
</div>
</section>
<section class="large-9 columns main-column">
<?php
while ( have_posts() ) : the_post();
// Include the single post content template.
get_template_part( 'template-parts/content', 'page' );
endwhile; // End of the loop.
?>
</section>
<?php get_sidebar();?>
</section>
<?php get_footer();?>