page-shop.php 380 B

123456789101112131415
  1. <?php get_header(); ?>
  2. <div class="container">
  3. <article id="content" class="single" role="main">
  4. <?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
  5. <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  6. <div class="entry-content">
  7. <?php the_content(); ?>
  8. </div>
  9. </div>
  10. <?php endwhile; ?>
  11. </article>
  12. </div>
  13. <?php get_footer(); ?>