????

Your IP : 3.140.197.28


Current Path : /home/darkwebsol/rensencorp.com/wp-content/themes/rashy/template-posts/loop/
Upload File :
Current File : /home/darkwebsol/rensencorp.com/wp-content/themes/rashy/template-posts/loop/inner-grid-home.php

<?php 
    $thumbsize = !isset($thumbsize) ? rashy_get_config( 'blog_item_thumbsize', 'full' ) : $thumbsize;
    $thumb = rashy_display_post_thumb($thumbsize);
?>
<article <?php post_class('post post-layout post-grid-v2 post-grid-home'); ?>>
   
    <?php if($thumb) {?>
        <div class="top-image image">
             <?php if ( is_sticky() && is_home() && ! is_paged() ) : ?>
                <span class="post-sticky"><?php echo esc_html__('Featured','rashy'); ?></span>
            <?php endif; ?>
            <?php
                $thumb = rashy_display_post_thumb($thumbsize);
                echo trim($thumb);
            ?>
          
            <div class="post-info">
                <div class="top-info">
                     <div class="blog-time">
                        <a href="<?php the_permalink(); ?> " class="date">
                            <?php the_time( get_option('date_format', 'd M, Y') ); ?>
                        </a>
                    </div>
                    <?php rashy_post_categories($post); ?>
                </div> 

                <?php if (get_the_title()) { ?>
                    <h4 class="entry-title">
                        <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
                    </h4>
                <?php } ?>
                
               <div class="bottom-info">
                    <?php if (rashy_get_config('show_readmore', false)) { ?>
                    <a class="btn btn-theme-second readmore radius-5x" href="<?php the_permalink(); ?>">
                        <?php esc_html_e('Read More', 'rashy'); ?>
                        <i class="icon-arrow-right" aria-hidden="true"></i>
                    </a>
                    <?php } ?>
                </div>
            </div>
        </div>
        
        <?php }else{ ?>
         <div class="no-image">
             <?php if ( is_sticky() && is_home() && ! is_paged() ) : ?>
                <span class="post-sticky"><?php echo esc_html__('Featured','rashy'); ?></span>
            <?php endif; ?>
            <div class="post-info">
                 <div class="top-info">
                    <div class="blog-time">
                        <a href="<?php the_permalink(); ?> " class="date">
                            <?php the_time( get_option('date_format', 'd M, Y') ); ?>
                        </a>
                    </div>
                    <?php rashy_post_categories($post); ?>
                </div>
                <?php if (get_the_title()) { ?>
                    <h4 class="entry-title">
                        <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
                    </h4>
                <?php } ?>

                <div class="bottom-info">
                    <?php if (rashy_get_config('show_readmore', false)) { ?>
                    <a class="btn btn-theme-second readmore radius-5x" href="<?php the_permalink(); ?>">
                        <?php esc_html_e('Read More', 'rashy'); ?>
                        <i class="icon-arrow-right" aria-hidden="true"></i>
                    </a>
                    <?php } ?>
                </div>
            </div>
        </div>   
    <?php } ?>       
    
</article>