%k25u25%fgd5n!
/home/nancmxek/ljsecuredoors.com/wp-content/themes/windoor/modules/blog/templates/post.php
<!-- Primary -->
<section id="primary" class="<?php echo esc_attr( windoor_get_primary_classes() ); ?>">

    <!-- Post List Wrapper -->
    <div class="wdt-posts-list-wrapper"><?php

        do_action( 'windoor_before_blog_post_content_wrap' );

        if( have_posts() ) {

            $holder_class  = windoor_get_archive_post_holder_class();
            $combine_class = windoor_get_archive_post_combine_class();

            $post_style    = windoor_get_archive_post_style();
            $template_args['Post_Style'] = $post_style;
            $template_args = array_merge( $template_args, windoor_archive_blog_post_params() );
            $template_args = apply_filters( 'windoor_blog_archive_order_params', $template_args );

            echo "<div class='tpl-blog-holder ".$holder_class."'>";
            echo "<div class='grid-sizer ".$combine_class."'></div>";

                while( have_posts() ) :
                    the_post();
                    $post_ID = get_the_ID(); ?>

                    <div class="<?php echo esc_attr($combine_class);?>">
                        <!-- #post-<?php echo "{$post_ID}"; ?> -->
                        <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>><?php

                            $template_args['ID'] = $post_ID;
                            windoor_template_part( 'blog', 'templates/'.$post_style.'/post', '', $template_args ); ?>
                        </article><!-- #post-<?php echo "{$post_ID}"; ?> -->
                    </div><?php
                endwhile;

            echo '</div>';
        } else {
            echo '<h2>'.esc_html__('Nothing Found.', 'windoor').'</h2>';
            echo '<p>'.esc_html__('Apologies, but no results were found for the requested archive.', 'windoor').'</p>';
        }

        do_action( 'windoor_after_blog_post_content_wrap' );?>

    </div><!-- Post List Wrapper End -->

</section><!-- Primary End -->
<?php windoor_template_part( 'sidebar', 'templates/sidebar' ); ?>