Advertisement
cybershot

page.php

Dec 25th, 2012
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.48 KB | None | 0 0
  1. <!--page.php-->
  2.  <li id="page=<?php echo $nav_id; ?>">
  3.                         <!----------/ CONTAINER 24 /---------->
  4.                         <div class="container_24">
  5.                             <!----------/ WRAPPER /---------->
  6.                             <div class="wrapper">
  7.                                 <!----------/ GRID 24 /---------->
  8.                                 <div class="grid_24">
  9.                                     <!----------/ CLOSE BUTTON /---------->
  10.                                     <a href="#" class="close" data-type="close"></a>
  11.                                     <!----------/ H2 TITLE /---------->
  12.                                     <h2>This is a page</h2>
  13.                                     <!----------/ BLOG DIV ID /---------->    
  14.                                  <div id="page">
  15.                                          <?php while ( have_posts() ) : the_post(); ?>
  16.                 <?php get_template_part( 'content', 'page' ); ?>
  17.                 <?php comments_template( '', true ); ?>
  18.             <?php endwhile; // end of the loop. ?>
  19.      <!----------/ PREVIOUS BUTTON /---------->
  20.                                 <a href="#" class="prev"></a>
  21.                                 <!----------/ NEXT BUTTON /---------->
  22.                                 <a href="#" class="next"></a>                        
  23.                                 </div>
  24.                                 </div>
  25.                                 </div>
  26.                                 </li>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement