File: //proc/thread-self/cwd/wp-content/themes/codate/page.php
<?php get_header();
if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="container_alt container_vis">
<div id="core" <?php post_class('postbar postbarRight'); ?>>
<div id="content" class="eightcol">
<div class="content_inn">
<div class="post-head">
<?php if (is_single()) {?>
<div class="meta_single">
<?php codate_meta_single() ?>
</div>
<?php } ?>
<div class="clearfix"></div>
<h1 class="entry-title p-border"><?php the_title(); ?></h1>
<?php if (is_single()) { if ( has_excerpt( $post->ID ) ) {the_excerpt();} }?>
</div>
<?php
$themnific_redux = get_option( 'themnific_redux' );
$single_featured = get_post_meta(get_the_ID(), 'themnific_single_featured', true);
if ($single_featured == 'No') { }
else { ?>
<div class="entryhead entryhead_single">
<?php the_post_thumbnail('codate_single',array('class' => 'standard grayscale grayscale-fade'));?>
</div>
<?php }?>
<div class="entry">
<?php the_content();?>
<div class="clearfix"></div>
<?php //tags/likes
$themnific_redux = get_option( 'themnific_redux' );
if (empty($themnific_redux['tmnf-post-likes-dis'])) {
} else {
the_tags(); ?>
<span class="modified small cntr" itemprop="dateModified" ><?php esc_html_e('Last modified','codate');?>: <?php the_modified_date(); ?></span>
<?php }?>
</div>
<div class="clearfix"></div>
<?php //post pagination
echo '<div class="post-pagination"><div class="post_pagination_inn">';
wp_link_pages(array(
'before' => '<p>',
'after' => '</p>',
'next_or_number' => 'next_and_number', # activate parameter overloading
'nextpagelink' => '<span class="tmnf_next_link">'.esc_html__('Next »','codate').'</span>',
'previouspagelink' => '<span class="tmnf_prev_link">'.esc_html__('« Previous','codate').'</span>',
'pagelink' => '%',
'echo' => 1 )
);
echo '</div></div>';?>
<?php if (is_single()) {get_template_part('/single-info');} else {comments_template();}?>
</div><!-- end .content_inn -->
</div><!-- end #content -->
<?php get_sidebar();?>
<div class="clearfix"></div>
</div><!-- end #core -->
</div><!-- end .container -->
<div class="clearfix"></div>
<?php endwhile; endif; ?>
<?php get_footer(); ?>