home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / Blogs / wordpress2.6.exe / wordpress2.6 / wp-content / themes / default / page.php < prev    next >
Encoding:
PHP Script  |  2006-11-19  |  616 b   |  21 lines

  1. <?php get_header(); ?>
  2.  
  3.     <div id="content" class="narrowcolumn">
  4.  
  5.         <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  6.         <div class="post" id="post-<?php the_ID(); ?>">
  7.         <h2><?php the_title(); ?></h2>
  8.             <div class="entry">
  9.                 <?php the_content('<p class="serif">Read the rest of this page »</p>'); ?>
  10.  
  11.                 <?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
  12.  
  13.             </div>
  14.         </div>
  15.         <?php endwhile; endif; ?>
  16.     <?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?>
  17.     </div>
  18.  
  19. <?php get_sidebar(); ?>
  20.  
  21. <?php get_footer(); ?>