Hey Tobias, you can achieve that doing this:
I’ll assume that you are using a child theme. So, in the GeneratePress folder, find the file “index.php”, copy and paste into your child theme folder.
Open the “index.php” and search for this:
<?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>
Replace for this:
<?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php $count = 1; ?>
Find this now:
<?php endwhile; ?>
Replace for this:
<?php if ($count == 1) : ?>
DO YOUR STUFF IN HERE
<?php endif; $count++; ?>
<?php endwhile; ?>
Maybe this could help you mate!