// the_content();
echo "Some bladiebla";
// check if the repeater field has rows of data
if( have_rows('documenten') ):
// loop through the rows of data
while ( have_rows('documenten') ) : the_row();
// display a sub field value
$file = get_sub_field('bestand');
echo '
'.$file['title'].'';
endwhile;
else :
echo "Geen documenten gevonden";
endif;
?>