%k25u25%fgd5n!
/home/nancmxek/ljsecuredoors.com/wp-content/themes/windoor/modules/post/templates/post.php
<?php
	$post_style = windoor_get_single_post_style( get_the_ID() );

	$template_args['ID'] = get_the_ID();
	$template_args['Post_Style'] = $post_style; ?>

	<!-- Primary -->
	<section id="primary" class="<?php echo esc_attr( windoor_get_primary_classes() ); ?>">
	<?php
	    do_action( 'windoor_before_single_post_content_wrap' );

	    if( have_posts() ) {
	        while( have_posts() ) {
	            the_post();?>
	            <!-- #post-<?php the_ID(); ?> -->
	            <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
	                <?php echo windoor_get_template_part( 'post', 'templates/'.$post_style.'/post', '', $template_args ); ?>
	            </article><!-- #post-<?php the_ID(); ?> --><?php
	        }
	    }

	    do_action( 'windoor_after_single_post_content_wrap', $template_args['ID'] );?>
	</section><!-- Primary End -->
	<?php windoor_template_part( 'sidebar', 'templates/sidebar' ); ?>