File: //home/u435929562/domains/tec-edu.in/public_html/wp-content/themes/literacy/content.php
<?php
/**
* @package Literacy
*/
?>
<div class="blog-post-repeat">
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="entry-header">
<h2 class="entry-title"><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<?php if ( 'post' == get_post_type() ) : ?>
<div class="postmeta">
<div class="post-date"><?php echo get_the_date(); ?></div><!-- post-date -->
<div class="post-comment"> | <a href="<?php comments_link(); ?>"><?php comments_number(); ?></a></div>
<div class="post-categories"> | <?php the_category( __( ', ', 'literacy' ));?></div>
<div class="clear"></div>
</div><!-- postmeta -->
<?php endif; ?>
<?php if ( is_search() || !is_single() ) : // Only display Excerpts for Search ?>
<div class="post-thumb"><?php the_post_thumbnail('medium', array('class' => 'alignleft') ); ?>
<?php else : ?>
<div class="post-thumb"><?php the_post_thumbnail(); ?>
<?php endif; ?>
</div><!-- post-thumb -->
</header><!-- .entry-header -->
<?php if ( is_search() || !is_single() ) : // Only display Excerpts for Search ?>
<div class="entry-summary">
<?php the_excerpt(); ?>
<p class="read-more"><a href="<?php the_permalink(); ?>"><?php esc_html_e('Read More »','literacy'); ?></a></p>
</div><!-- .entry-summary -->
<?php else : ?>
<div class="entry-content">
<?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'literacy' ) ); ?>
<?php
wp_link_pages( array(
'before' => '<div class="page-links">' . __( 'Pages:', 'literacy' ),
'after' => '</div>',
) );
?>
</div><!-- .entry-content -->
<?php endif; ?>
</article><!-- #post-## -->
<div class="spacer20"></div>
</div><!-- blog-post-repeat -->