What is wrong with my code in index.php? or maybe not in my code? I'm creating a new theme from scratch. Direction of files is correct. Theme is activated. But text is not showing up.
<?php
get_header();
if(have_posts()) :
while (have_posts()) : the_post(); ?>
<h2>hello</h2>
<?php the_content(); ?>
<?php endwhile;
else :
echo '<p>No content found</p>'
endif;
get_footer();
?>