Basically I just want the featured image to be seen when someone is seeing my Blog page. But in each individual post, I don't want it to be seen.
Help is appreciated

<?php
/**
*
* The template fragment to show post featured image
*
**/
// disable direct access to the file
defined('GAVERN_WP') or die('Access denied');
global $tpl;
?>
<?php if(has_post_thumbnail()) : ?>
<figure class="featured-image">
<?php the_post_thumbnail(); ?>
</figure>
<?php endif; ?>
<?php if(has_post_thumbnail()) : ?>
<figure class="featured-image">
<?php the_post_thumbnail(); ?>
</figure>
<?php endif; ?>
<?php if(has_post_thumbnail() && !is_single()) : ?>
<figure class="featured-image">
<?php the_post_thumbnail(); ?>
</figure>
<?php endif; ?>
<?php if(has_post_thumbnail()) : ?>
<figure class="featured-image">
<?php the_post_thumbnail(); ?>
</figure>
<?php endif; ?>