All pastes #2131016 Raw Edit

Stuff

public text v1 · immutable
#2131016 ·published 2012-03-22 02:07 UTC
rendered paste body
<?php 
get_template_part('./template/header');
get_template_part('./template/top');
?>
  <!--content-->
  <div id="content">
    <!--content background top-->
    <div id="content-a"></div>
    <!--content background top-->
    <!--main content -->
    <div id="content-b">
      <!--inner content -->
      <div class="inner-cotent">
        <!--page -->
        <div id="page">
          <h2><?php the_title();?></h2>
          <?php
          wp_reset_postdata();
          if ( have_posts() ) : while ( have_posts() ) : the_post(); 
          the_content();
          endwhile; else:
        ?><p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
        <?php endif; wp_reset_postdata();?>
        </div>
        <!--page -->
       
      <?php 
     
      global $post;
      $sidebar = get_post_meta($post->ID,'wpcf-enable_sidebar', true);
     
      if ($sidebar == 1) { 
        get_template_part('./template/sidebar');
      }
      ?>
      </div>
      <!--/inner content -->
    </div>
    <!--/main content -->
    <!--content background bottom -->
    <div id="content-c"></div>
    <!--/content background bottom -->
  </div>
  <!--/content background -->
  <!--/content-->
<?php get_template_part('./template/footer'); ?>