1. <?php get_header(); ?>
  2.  
  3. <div id="main-content" class="rounded<?php if(get_post_meta($post->ID, 'ghostpool_layout', true) == "Fullwidth") { ?> fullwidth<?php } ?>">
  4.  
  5. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  6.  
  7. <h1><?php the_title(); ?></h1>
  8.  
  9. <?php the_content(); ?>
  10.  
  11. <?php endwhile; endif; ?>
  12.  
  13. </div>
  14.  
  15.  
  16. <?php get_footer(); ?>
  17.