-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle.php
38 lines (38 loc) · 1.15 KB
/
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
30
31
32
33
34
35
36
37
38
<?php get_header(); ?>
<div class="site-content">
<?php while ( have_posts() ) : the_post(); ?>
<div class="section main-content">
<div class="wrapper">
<div class="container-fluid">
<div class="row">
<div class="col-xs-12">
<div class="inner-page-header">
<h1 class="page-header"><?php the_title(); ?></h1>
<?php
if( function_exists('bootstrap_breadcrumb') )
bootstrap_breadcrumb('<i class="fa fa-home"></i>');
?>
</div>
</div>
</div>
<?php if ( has_post_thumbnail() ) : ?>
<div class="row">
<div class="col-xs-12">
<div class="featured-image" style="background-image: url(<?php echo get_image_url_by_id( get_post_thumbnail_id( get_the_id() ), 'featured' ); ?>);"></div>
</div>
</div>
<?php endif; ?>
<div class="row">
<div class="col-xs-12">
<div class="page-content" id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php the_content(); ?>
</div>
</div>
</div>
</div>
</div>
</div><!-- main-content -->
<?php endwhile; ?>
<?php get_template_part( 'partials/section', 'cntlinks' ); ?>
</div><!-- site-content -->
<?php get_footer(); ?>