Advertisement
Guest User

Untitled

a guest
Dec 29th, 2013
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 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. * Please note that this is the wordpress construct of pages
  7. * and that other 'pages' on your wordpress site will use a
  8. * different template.
  9. *
  10. * @package WordPress
  11. */
  12. ?>
  13. <?php get_header(); ?>
  14. <!--Start Content Wrapper-->
  15. <div class="grid_24 content_wrapper">
  16. <div class="grid_16 alpha">
  17. <!--Start Content-->
  18. <?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
  19. <div class="content">
  20. <h1><?php the_title(); ?></h1>
  21. <?php if (function_exists('inkthemes_breadcrumbs')) inkthemes_breadcrumbs(); ?>
  22. <?php the_content(); ?>
  23. <div class="clear"></div>
  24. <!--Start Comment box-->
  25. <h3>Comments &amp; Responses</h3>
  26. <?php comments_template(); ?>
  27. <!--End comment Section-->
  28. </div>
  29. <!--End Content-->
  30. <?php endwhile;?>
  31. </div>
  32. <!--Start Sidebar-->
  33. <?php get_sidebar(); ?>
  34. <!--End Sidebar-->
  35. </div>
  36. <!--End Content Wrapper-->
  37. <div class="clear"></div>
  38. </div>
  39. <!--End Container-->
  40. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement