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-280x275'); ?>
<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>
<?php if($post->post_excerpt || $post-> post_content) : ?>
<div class="entry-content-wrapper clearfix">
<div class="entry-content clearfix">
<?php if ($post->post_excerpt && !is_single()) : ?>
<?php the_excerpt(); ?>
<?php else : ?>
<?php the_content(false); ?>
<?php endif; ?>
<?php if (!is_single()) : ?>
<a class="read-more" href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to "%s"', 'coffee' ), the_title_attribute( 'echo=0' ) ) ); ?>">
<button>
<i class="icon-plus"></i><?php _e('Read More', 'coffee'); ?>
</button>
</a>
<?php elseif(is_single() && has_tag()) : ?>
<div class="entry-tags clearfix">
<?php the_tags('', '', ''); ?>
</div>
<?php endif; ?>
</div>
</div>
<?php endif; ?>
</div>
</article>
ACC SHELL 2018