<div class="row blog-post-container">
<div class="small-11 small-centered columns">
<div class="row">
- <div class="small-12 columns">
- <article id="<?php the_ID()?>" <?php post_class()?>>
- <h1><?php the_title();?></h1>
- <?php echo the_content(); ?>
- <footer class="entry-meta small-12 medium-6 medium-push-3 center">
- <?php $post_categories = wp_get_post_categories( get_the_ID() );
+ <?php $thumbnail = get_the_post_thumbnail($post->ID, 'blog-feed-front'); ?>
+ <?php if ($thumbnail) { ?>
+ <div class="small-12 text-center columns blog-feed-imgs">
+ <?php echo $thumbnail; ?>
+ <div class="small-12 text-center columns">
+ <?php $post_categories = wp_get_post_categories( get_the_ID() );
$cats = array();
echo 'This entry was posted ';
if (has_category()) {
}
echo ' on ';
echo ' <span class="meta date"> ' . the_time('F jS, Y') . '</span>';
- ?>
- </footer>
+ ?>
+ </div>
+ </div>
+ <div class="small-12 columns">
+ <?php } else { ?>
+ <div class="small-12 columns">
+ <?php } ?>
+ <article id="<?php the_ID()?>" <?php post_class()?>>
+ <h1><?php the_title();?></h1>
+ <?php echo the_content(); ?>
+
</article>
</div>
</div>