Advertisement
Guest User

index.php

a guest
Aug 26th, 2013
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.04 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <div id="page">
  4. <div class="container">
  5. <div id="page-inner">
  6.  
  7. <div class="main fix <?php echo wpb_option('general-sidebar','sidebar-right'); ?>">
  8.  
  9. <div class="content-part">
  10. <?php if ( wpb_option('featured-slider-enable') ) { get_template_part('_featured'); } ?>
  11.  
  12. <!--home widgets top-->
  13. <?php if ( is_home() && !is_paged() ): ?>
  14. <?php if ( wpb_option('home-widgets-top') ): ?>
  15. <?php if ( wpb_option('home-widgets-top-title') ): ?><h4 class="miniheading pad"><?php echo wpb_option('home-widgets-top-title'); ?></h4><?php endif; ?>
  16. <div id="spot-top" class="home-widgets pad fix">
  17. <ul class="grid one-half"><?php dynamic_sidebar('widget-home-top-1'); ?></ul>
  18. <ul class="grid one-half last"><?php dynamic_sidebar('widget-home-top-2'); ?></ul>
  19. </div>
  20. <?php endif; ?>
  21.  
  22. <h4 class="miniheading pad"><?php echo wpb_option('blog-heading', __('Most Recent', 'newsroom')); ?></h4>
  23. <?php endif; ?>
  24.  
  25. <?php
  26. if ( wpb_option('post-structure-home') ) {
  27. get_template_part('_loop-alt');
  28. } else {
  29. get_template_part('_loop');
  30. }
  31. ?>
  32.  
  33.  
  34. <!--home widgets bottom-->
  35. <?php if ( is_home() && !is_paged() ): ?>
  36. <?php if ( wpb_option('home-widgets-bottom') ): ?>
  37. <?php if ( wpb_option('home-widgets-bottom-title') ): ?><h4 class="miniheading pad"><?php echo wpb_option('home-widgets-bottom-title'); ?></h4><?php endif; ?>
  38. <div id="spot-bottom" class="home-widgets pad fix">
  39. <ul class="grid one-half"><?php dynamic_sidebar('widget-home-bottom-1'); ?></ul>
  40. <ul class="grid one-half last"><?php dynamic_sidebar('widget-home-bottom-2'); ?></ul>
  41. </div>
  42. <?php endif; ?>
  43. <?php endif; ?>
  44.  
  45. </div><!--/content-part-->
  46.  
  47. <div class="sidebar">
  48. <?php get_sidebar(); ?>
  49. </div><!--/sidebar-->
  50.  
  51. </div><!--/main-->
  52.  
  53. </div><!--/page-inner-->
  54. </div><!--/container-->
  55. </div><!--/page-->
  56.  
  57. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement