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 / index.php < prev    next >
Encoding:
PHP Script  |  2007-09-19  |  1.3 KB  |  40 lines

  1. <?php get_header(); ?>
  2.  
  3.     <div id="content" class="narrowcolumn">
  4.  
  5.     <?php if (have_posts()) : ?>
  6.  
  7.         <?php while (have_posts()) : the_post(); ?>
  8.  
  9.             <div class="post" id="post-<?php the_ID(); ?>">
  10.                 <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
  11.                 <small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small>
  12.  
  13.                 <div class="entry">
  14.                     <?php the_content('Read the rest of this entry »'); ?>
  15.                 </div>
  16.  
  17.                 <p class="postmetadata"><?php the_tags('Tags: ', ', ', '<br />'); ?> Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?>  <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p>
  18.             </div>
  19.  
  20.         <?php endwhile; ?>
  21.  
  22.         <div class="navigation">
  23.             <div class="alignleft"><?php next_posts_link('« Older Entries') ?></div>
  24.             <div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div>
  25.         </div>
  26.  
  27.     <?php else : ?>
  28.  
  29.         <h2 class="center">Not Found</h2>
  30.         <p class="center">Sorry, but you are looking for something that isn't here.</p>
  31.         <?php include (TEMPLATEPATH . "/searchform.php"); ?>
  32.  
  33.     <?php endif; ?>
  34.  
  35.     </div>
  36.  
  37. <?php get_sidebar(); ?>
  38.  
  39. <?php get_footer(); ?>
  40.