-
Notifications
You must be signed in to change notification settings - Fork 6
/
single.php
29 lines (26 loc) · 889 Bytes
/
single.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
<?php
/**
* The template for displaying all single posts
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
*
* @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', 'single' );
endwhile; // End of the loop.
?>
</section>
<?php get_sidebar();?>
</section>
<?php get_footer();?>