';
}
if ( have_posts() ) :
while ( have_posts() ) :
the_post();
// If this is the minimal welcome page created on theme activation, render it in a padded card
// so the text/buttons are not flush-left.
$minimal_home = ( '1' === (string) get_post_meta( get_the_ID(), '_bongoto_minimal_home', true ) );
if ( $wrap_container && $minimal_home ) {
echo '';
}
the_content();
if ( $wrap_container && $minimal_home ) {
echo '';
}
endwhile;
endif;
if ( $wrap_container ) {
echo '';
}
?>