All pastes #2046837 Raw Edit

Untitled

public text v1 · immutable
#2046837 ·published 2011-04-15 14:37 UTC
rendered paste body
<?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> |&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<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(); ?>