All pastes #2046845 Raw Edit

Untitled

public text v1 · immutable
#2046845 ·published 2011-04-15 14:59 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
 // begin van next-previous definitie
?>
<div class="navigation">
<div class="alignleft"><?php next_posts_link('&laquo; Previous Entries') ?></div>
<div class="alignright"><?php previous_posts_link('Next Entries &raquo;') ?></div>
</div>
<?php
 // einde van next-previous definitie
?>

<?php get_footer(); ?>