Advertisement
Guest User

iA3 page with comments

a guest
Jun 27th, 2011
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. <?php
  2. /**
  3. * Template Name: Page
  4. **/
  5. ?>
  6. <!DOCTYPE html>
  7. <!--[if IE 6 ]><html class="ie ielt9 ielt8 ielt7 ie6" lang="<?php bloginfo('language'); ?>"><![endif]-->
  8. <!--[if IE 7 ]><html class="ie ielt9 ielt8 ie7" lang="<?php bloginfo('language'); ?>"><![endif]-->
  9. <!--[if IE 8 ]><html class="ie ielt9 ie8" lang="<?php bloginfo('language'); ?>"><![endif]-->
  10. <!--[if IE 9 ]><html class="ie ie9" lang="<?php bloginfo('language'); ?>"><![endif]-->
  11. <!--[if (gt IE 9)|!(IE)]><!--><html lang="<?php bloginfo('language'); ?>"><!--<![endif]-->
  12. <head>
  13. <?php @include('inc_head.php'); ?>
  14. </head>
  15. <body class="page">
  16. <div id="screen">
  17. <?php @include('inc_body_header.php'); ?>
  18.  
  19. <article class="G4 GR GS" id="content">
  20. <?php while (have_posts()): the_post(); ?>
  21. <header>
  22. <h1><?php the_title(); ?></h1>
  23. </header>
  24. <div class="formatted">
  25. <?php the_content(); ?>
  26. </div><!-- .formatted -->
  27. <?php endwhile; ?>
  28.  
  29. <?php comments_template(); ?>
  30. </article><!-- #content.G4.GR.GS -->
  31.  
  32. <hr class="implied" />
  33.  
  34. <?php @include('inc_body_footer.php'); ?>
  35. </div><!-- #screen -->
  36. </body>
  37. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement