index.php file content:
<?php get_header(); ?>
<section>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post() ; ?>
<h1><?php the_title() ?></h1>
<?php the_content('') ?>
<?php endwhile; ?>
<?php endif; ?>
</section>
</div>
<?php get_footer(); ?>
[Moderator Note: Please post code or markup snippets between backticks or use the code button. As it stands, your code may now have been permanently damaged/corrupted by the forum’s parser.]