<?php get_header(); ?>
<div class="content-wrapper single-post-wrapper">
<main id="main" class="site-main single-post-main">
<?php
if ( have_posts() ) :
while ( have_posts() ) : the_post();
the_title('<h1>', '</h1>'); // Use h1 for page titles as well
the_content();
endwhile;
else :
echo '<p>' . esc_html__( 'No articles found', 'simple-modern' ) . '</p>';
endif;
?>
</main>
</div>
<?php get_footer(); ?>