Informations
This code display the posts with a loop according to the template used.
Code
<?php if(have_posts()) : ?>
<?php while(have_posts()) : the_post(); ?>
Here, you can display the post informations
<?php endwhile; ?>
<?php endif; ?>