File: /var/www/BtPayments/BtPayments-home/wp-content/themes/kava/post-templates/single-layout-9.php
<?php
/**
* Template Name: Post Layout 09
* Template Post Type: post
*
* The template for displaying layout 9 single posts.
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
*
* @package Kava
*/
get_header();
?><div class="site-content__wrap"><?php
get_template_part( 'template-parts/single-post/headers/header-v9', get_post_format() );
?><div class="container">
<div class="row">
<div id="primary" <?php kava_primary_content_class(); ?>>
<main id="main" class="site-main">
<?php while ( have_posts() ) : the_post();
?><article id="post-<?php the_ID(); ?>" <?php post_class(); ?>><?php
get_template_part( 'template-parts/single-post/author-bio' );
get_template_part( 'template-parts/single-post/content', get_post_format() );
get_template_part( 'template-parts/single-post/footer' );
?></article><?php
get_template_part( 'template-parts/single-post/post_navigation' );
kava_related_posts();
get_template_part( 'template-parts/single-post/comments' );
endwhile; // End of the loop. ?>
</main><!-- #main -->
</div><!-- #primary -->
<?php get_sidebar(); // Loads the sidebar.php template. ?>
</div>
</div>
</div><?php
get_footer();