I think that is Loop-page.php
I cannot understand the code.
Here is the code:
<?php
/**
* The loop that displays a page.
*
* The loop displays the posts and the post content. See
* https://codex.www.ads-software.com/The_Loop to understand it and
* https://codex.www.ads-software.com/Template_Tags to understand
* the tags used in it.
*
* This can be overridden in child themes with loop-page.php.
*
* @package WordPress
* @subpackage Lisa_Kotin
* @since Lisa Kotin 1.2
*/
?>
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?> style="border:0px !important;">
<?php if ( is_front_page() ) { ?>
<h1 class="heading"><?php the_title(); ?></h2>
<?php } else { ?>
<h1 class="heading"><?php the_title(); ?></h1>
<?php } ?>
<div class="entry-content">
<?php the_content(); ?>
<?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'lisakotin' ), 'after' => '</div>' ) ); ?>
<?php edit_post_link( __( 'Edit', 'lisakotin' ), '<span class="edit-link">', '</span>' ); ?>
</div><!-- .entry-content -->
</div><!-- #post-## -->
<?php //comments_template( '', true ); ?>
<?php endwhile; // end of the loop. ?>