Advertisement
keithive

page.php

Oct 1st, 2011
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. <?php get_header(); ?>
  2. <!-- Container Start -->
  3. <div class="container_16">
  4.  
  5. <!-- Top Back Theme -->
  6. <div id="top-back-two"></div>
  7.  
  8. <!-- Big Message -->
  9. <div class="grid_11 top-message">
  10. <h1>
  11. <?php if ( get_post_meta($post->ID, 'bigtitle', true) ) { ?>
  12. <?php echo get_post_meta($post->ID, "bigtitle", $single = true); ?>
  13. <?php } ?>
  14. </h1>
  15. </div>
  16.  
  17. <!-- Emty Grid -->
  18. <div class="grid_5">
  19. </div>
  20.  
  21. <div class="grid_16 blog-page">
  22. <h1>
  23. <?php the_title_limit( 30, '...'); ?>
  24. </h1>
  25. <h2 class="blog-page-space"></h2>
  26. </div>
  27.  
  28. <?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
  29. <!-- Detail -->
  30. <div style="margin:6px 4px 0px 2px;" class="grid_16 post-blog-read">
  31. <?php the_content(); ?>
  32. </div>
  33.  
  34. <?php endwhile; ?>
  35.  
  36. </div>
  37.  
  38. <?php get_footer(); ?>
  39.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement