forked from mlteal/bluegreen
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingle.php
More file actions
27 lines (24 loc) · 683 Bytes
/
Copy pathsingle.php
File metadata and controls
27 lines (24 loc) · 683 Bytes
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
<?php
/**
* The template for displaying all single posts
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
*
* @package Bulmapress
*/
get_header(); ?>
<div id="primary" class="content-area">
<main id="main" class="site-main wrapper" role="main">
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'template-parts/content', 'post' ); ?>
<div class="section">
<div class="container is-narrow">
<?php the_post_navigation();?>
</div>
</div>
<?php bulmapress_get_comments(); ?>
<?php endwhile; ?>
</main><!-- #main -->
</div><!-- #primary -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>