Advertisement
alansills

clearvideo index page

Jun 19th, 2012
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <?php if ( is_home() && $paged < 2 && get_option('solostream_featpage_on') == 'Yes') { ?>
  4. <?php include (TEMPLATEPATH . '/featured-pages.php'); ?>
  5. <?php } ?>
  6.  
  7. <?php if ( is_home() && $paged < 2 && get_option('solostream_features_on') == 'Yes') { ?>
  8. <?php include (TEMPLATEPATH . '/featured-wide.php'); ?>
  9. <?php } ?>
  10.  
  11. <div id="page" class="clearfix">
  12.  
  13. <div id="contentleft" class="maincontent">
  14.  
  15. <div id="content" class="clearfix">
  16.  
  17. <?php include (TEMPLATEPATH . '/banner468.php'); ?>
  18.  
  19. <?php if ( get_option('solostream_home_layout') == 'Option 1 - Standard Blog Layout') { ?>
  20. <?php include (TEMPLATEPATH . '/index1.php'); ?>
  21. <?php } elseif ( get_option('solostream_home_layout') == 'Option 2 - 2 Posts Aligned Side-by-Side') { ?>
  22. <?php include (TEMPLATEPATH . '/index2.php'); ?>
  23. <?php } elseif ( get_option('solostream_home_layout') == 'Option 3 - Posts Arranged by Category Side-by-Side') { ?>
  24. <?php include (TEMPLATEPATH . '/index3.php'); ?>
  25. <?php } elseif ( get_option('solostream_home_layout') == 'Option 4 - Posts Arranged by Category Stacked') { ?>
  26. <?php include (TEMPLATEPATH . '/index4.php'); ?>
  27. <?php } ?>
  28.  
  29. </div>
  30.  
  31. <?php include (TEMPLATEPATH . '/sidebar-narrow.php'); ?>
  32.  
  33. </div>
  34.  
  35. <?php get_sidebar(); ?>
  36.  
  37. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement