Thanks I think that led me in the right direction but I’m still encountering a problem.
Again, I’m fairly new to coding in WordPress so my knowledge in php is limited.
The code listed on the link you shared with me is designed for the TwentyEleven theme. So the following code is relative to that theme:
<?php twentyeleven_content_nav( 'nav-above' );?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', get_post_format() ); ?>
<?php endwhile; ?>
<?php twentyeleven_content_nav( 'nav-below' ); ?>
Is there text in this code that I can modify to represent my own theme? Is it that easy? Or is this defining where the content goes stylistically on the TwentyEleven theme?