<?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.
*/
?>
<?php get_header(); ?>
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<div class="post_div">
<div class="post_info"><span><?php the_time('d M Y') ?></span> <span>Posted by <strong><?php the_author_posts_link(); ?></strong></span><span> | <strong><?php comments_number('No Comments', '1 Comments', '% Comments'); ?></strong></span> </div>
<h2><a href="<?php echo the_permalink();?>"><?php the_title(); ?></a></h2>
<div class="post_img"><?php the_post_thumbnail('Post image cropped'); ?></div>
<?php the_excerpt(); ?>
<a class="fleft read_more" href="<?php echo the_permalink();?>">Read more</a>
</div>
<?php endwhile; // end of the loop. ?>
<?php get_footer(); ?>