File: /home/heewonvps_17/drug-injury-lawyer.com/wp-content/themes/master/loop-page.php
<?php
/**
* The loop that displays a page.
*
* The loop displays the posts and the post content. See
* http://codex.wordpress.org/The_Loop to understand it and
* http://codex.wordpress.org/Template_Tags to understand
* the tags used in it.
*
* This can be overridden in child themes with loop-page.php.
*
* @package WordPress
* @subpackage Master Theme
*/
?>
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<p class="page-title"><?php the_title(); ?></p>
<div class="entry-content">
<?php the_content(); ?>
<?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'master' ), 'after' => '</div>' ) ); ?>
<?php edit_post_link( __( 'Edit', 'master' ), '<span class="edit-link">', '</span>' ); ?>
</div><!-- .entry-content -->
</div><!-- #post-## -->
<?php //comments_template( '', false ); ?>
<?php endwhile; // end of the loop. ?>