-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsingle.php
More file actions
24 lines (22 loc) · 846 Bytes
/
Copy pathsingle.php
File metadata and controls
24 lines (22 loc) · 846 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
<?php get_header(); ?>
<section class="blogpost mt-8">
<div class="container">
<div class="row flex-hcenter">
<div class="col-lg-10 col-12 mx-auto">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<h2 class="text-left mb-4">
<span><?php the_title(); ?></span>
</h2>
<div class="box blue-bg">
<div class="blog-content">
<?php the_content(); ?>
</div>
</div>
<?php endwhile; else : ?>
<p><?php _e( 'Sorry, no posts matched your criteria.', 'colibry' ); ?></p>
<?php endif; ?>
</div>
</div>
</div>
</section>
<?php get_footer(); ?>