Wordpress: ACF repeater code
<?php if( have_rows('content_blocks') ): ?>
<?php while ( have_rows('content_blocks') ) : the_row(); ?>
<h2><?php the_sub_field('content_block_title'); ?></h2>
<p><?php the_sub_field('content_block_content'); ?></p>
<?php endwhile; ?>
<?php endif; ?>