Your IP : 216.73.216.95


Current Path : /var/test/www/foundation/wp-content/themes/kallyas/components/blog/default-modern/
Upload File :
Current File : /var/test/www/foundation/wp-content/themes/kallyas/components/blog/default-modern/blog-img.php

<?php if(! defined('ABSPATH')){ return; }
/*
 * Get post content (in full-image width context)
 * @since v4.0.12
 */
?>
<div class="kl-blog-item-content <?php echo $sb_archive_use_full_image == 'no' ? 'kl-blog-fixedimg':'kl-blog-fullimg'; ?> clearfix">

    <?php

    /**
     * Layout for normal fixed width image
     */
    if( $sb_archive_use_full_image == 'no' ){

        echo $current_post['content'];

        // Load read more button
        include(locate_template( 'components/blog/default-modern/blog-readmore.php' ));
    }
    /**
     * Layout for FULL image
     */
    elseif( $sb_archive_use_full_image == 'yes' ){

        // Load read more button
        include(locate_template( 'components/blog/default-modern/blog-readmore.php' ));

        echo $current_post['content'];
    }

    ?>

</div>
<!-- end Item Intro Text -->