<?php
    // Display: Full Title
    $showcase_wp_fulltitle = get_theme_mod('showcase_wp_fulltitle');
    if (empty($showcase_wp_fulltitle)) { $showcase_wp_fulltitle = '0'; }
?>
        <ul id="home2" class="modern-articles modern-grid">
        <?php if (have_posts()) : while (have_posts()) : the_post(); ?>

            <li <?php post_class('') ?> id="post-<?php the_ID(); ?>">
                <div class="content-art">
                    <?php if (is_sticky()) { ?><div class="sticky-art"><i class="fa fa-bookmark"></i></div><?php } ?>
                    <div class="box-image">
                        <?php if ( has_post_thumbnail()) { ?>
                            <a href="<?php the_permalink(); ?>"><?php the_post_thumbnail('showcase_wp_thumbnail-blog', array('title' => "")); ?></a>
                        <?php } else { ?> 
                            <a href="<?php the_permalink(); ?>"> <img src="<?php echo get_template_directory_uri(); ?>/images/noimg.png" alt="article image" /></a>
                        <?php } ?>
                    </div><!-- end .box-image -->

                    <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><h2><?php if ($showcase_wp_fulltitle == '0') { showcase_wp_the_title( 27, ' ..'); } else { the_title(); } ?></h2></a>
                    <span class="meta-art">
                        <?php $showcase_wp_category = get_the_category(); if ($showcase_wp_category) { echo '<a href="' . get_category_link( $showcase_wp_category[0]->term_id ) . '">' . $showcase_wp_category[0]->name.'</a> ';}  ?>
                    </span>

                </div><!-- end .content-art -->
            </li>   

        <?php endwhile; ?>
        </ul><!-- end .modern-articles -->


        <!-- Pagination -->
        <div class="clear"></div>
        <?php // Plugin PageNavi
        if(function_exists('wp_pagenavi')) { ?>
            <?php wp_pagenavi(); ?>
        <?php } else { ?>
            <div class="defaultpag">
                <div class="sright"><?php next_posts_link('' . esc_html__('Older Entries', 'showcase_wp') . ' &rsaquo;'); ?></div>
                <div class="sleft"><?php previous_posts_link('&lsaquo; ' . esc_html__('Newer Entries', 'showcase_wp') . ''); ?></div>
            </div>
        <?php } ?>
        <!-- pagination -->


        <?php endif; ?>