ACC SHELL
<?php $thumb = ' thumbnail'; if(!has_post_thumbnail()){$thumb = ' nothumbnail';} ?>
<article <?php post_class('clearfix'.$thumb); ?>>
<?php if(has_post_thumbnail()): ?>
<div class="entry-aside clearfix">
<div class="entry-media-wrapper clearfix">
<div class="entry-media clearfix">
<?php if (!is_single()) : ?>
<a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to "%s"', 'coffee' ), the_title_attribute( 'echo=0' ) ) ); ?>">
<?php the_post_thumbnail('thumbnail-50x50'); ?>
<div class="entry-media-overlay">
<div class="entry-media-permalink"><i class="icon-link"></i></div>
</div>
</a>
<?php else : ?>
<a href="#" title="<?php echo esc_attr( sprintf( __( 'Zoom to "%s" featured image', 'coffee' ), the_title_attribute( 'echo=0' ) ) ); ?>">
<?php the_post_thumbnail('thumbnail-280x275'); ?>
<div class="entry-media-overlay">
<div class="entry-media-zoom"><i class="icon-zoom-in"></i></div>
</div>
</a>
<?php endif; ?>
<div class="entry-media-arrow-right"></div>
</div>
</div>
</div>
<?php endif; ?>
<div class="entry-inner clearfix">
<div class="entry-title-wrapper clearfix">
<h1 class="entry-title">
<?php if (!is_single()) : ?>
<a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to "%s"', 'coffee' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title(); ?></a>
<?php else : ?>
<?php the_title(); ?>
<?php endif; ?>
</h1>
</div>
<div class="entry-meta-wrapper">
<div class="entry-meta heading-font">
<ul>
<li><?php the_time(get_option( 'date_format' )); ?></li>
<li><?php comments_popup_link( __('No Comments', 'coffee'), __('One Comment', 'coffee'), __('% Comment', 'coffee') ); ?></li>
<li><?php the_category(', '); ?></li>
</ul>
</div>
</div>
</div>
</article>
ACC SHELL 2018