Advertisement
Guest User

Untitled

a guest
Aug 30th, 2013
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. <?php
  2. /**
  3. * The template for displaying all pages.
  4. *
  5. * This is the template that displays all pages by default.
  6. *
  7. * @package WordPress
  8. * @subpackage Simple_Catch
  9. * @since Simple Catch 1.0
  10. */
  11. get_header(); ?>
  12.  
  13. <div id="main" class="layout-978">
  14. <div id="content" class="col8">
  15.  
  16. <?php while ( have_posts() ):the_post(); ?>
  17.  
  18. <div <?php post_class(); ?> >
  19.  
  20. <h2 class="entry-title"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
  21. <hr/>
  22. <?php the_content(); ?>
  23.  
  24. </div><!--.post-->
  25.  
  26. <?php endwhile; ?>
  27.  
  28. <hr/>
  29. <div class="row-end"></div>
  30.  
  31.  
  32.  
  33. </div><!--#content-->
  34.  
  35.  
  36. </div><!--#main-->
  37.  
  38. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement