Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.04 KB | None | 0 0
  1. <?php
  2.  /* Mystique/digitalnature */
  3.  get_header();
  4. ?>
  5.  
  6.   <!-- main content: primary + sidebar(s) -->
  7.   <div id="main">
  8.    <div id="main-inside" class="clear-block">
  9.  
  10.     <!-- primary content -->
  11.     <div id="primary-content">
  12.      <div class="blocks">
  13.       <?php do_action('mystique_before_primary'); ?>
  14.       <?php
  15.  
  16.        if (have_posts()):
  17.        $counter = 0;
  18.         while (have_posts()):
  19.          the_post();         
  20.          mystique_post();
  21.          if ( 0 == ( $counter % 2 )) {
  22.         ?>
  23.           <!-- adsense code here -->
  24.         <?php      
  25.          }
  26.          $counter++
  27.         endwhile;
  28.  
  29.         mystique_pagenavi();
  30.        else: ?>
  31.        <h1 class="title error"><?php _e("No posts found","mystique"); ?></h1>
  32.        <p><?php _e("Sorry, but you are looking for something that isn't here.","mystique"); ?></p>
  33.  
  34.       <?php endif; ?>
  35.       <?php do_action('mystique_after_primary'); ?>
  36.      </div>
  37.     </div>
  38.     <!-- /primary content -->
  39.  
  40.     <?php get_sidebar(); ?>
  41.  
  42.    </div>
  43.   </div>
  44.   <!-- /main content -->
  45.  
  46. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement