<div class="small-11 columns">
<?php if( count(get_post_ancestors($post->ID)) == 0 ) { ?>
<article id="<?php the_ID()?>" <?php post_class()?>>
-
+ <?php $thumbnail = get_the_post_thumbnail($post->ID, 'blog-feed-front'); ?>
+ <?php echo $thumbnail; ?>
<header class="entry-header">
<h1 class="entry-title"><a href="<?php the_permalink(); ?>"><?php the_title();?></a></h1>
+ <h3> <?php the_category(); ?></h3>
<!-- <span class="meta date"><?php //the_time('F jS, Y') ?></span>-->
</header>
- <?php $thumbnail = get_the_post_thumbnail($post->ID, 'blog-feed-front'); ?>
- <?php echo $thumbnail; ?>
+
<?php } ?>