WP: Simple Loop
<?php while (have_posts()) : the_post(); ?> <h1 class="entry-title"><a href="<?php the_permalink();?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h1> <?php the_content();?> <?php endwhile; ?>