Advertisement
Guest User

Untitled

a guest
May 6th, 2013
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.52 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3.     <section id="main" role="main">
  4.  
  5.         <div class="col-1-4">
  6.  
  7.             <div class="product-meta-fixed">
  8.                 <?php mp_product_image(); ?>
  9.                 <?php mp_product_price(); ?>
  10.                 <?php mp_buy_button(); ?>
  11.             </div>
  12.    
  13.         </div>
  14.         <div class="col-3-4 product-details">
  15.  
  16.         <?php while ( have_posts() ) : the_post(); ?>
  17.  
  18.             <?php get_template_part( 'templates/partials/content', 'single' ); ?>
  19.  
  20.         <?php endwhile; ?>
  21.  
  22.         </div>
  23.  
  24.     </section> <!-- /#main -->
  25.  
  26. <?php get_sidebar(); ?>
  27.  
  28. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement