Advertisement
likoma

index

May 12th, 2012
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. <?php
  2.  
  3. /**
  4.  
  5. * Index Template
  6.  
  7. *
  8.  
  9. * The index template is a placeholder for all cases that don't have a template file.
  10.  
  11. * Ideally, all fases would be handled by a more appropriate template according to the
  12.  
  13. * current page context (for example, `tag.php` for a `post_tag` archive or `single.php`
  14.  
  15. * for a single blog post).
  16.  
  17. *
  18.  
  19. * @package WooFramework
  20.  
  21. * @subpackage Template
  22.  
  23. */
  24.  
  25.  
  26.  
  27. get_header();
  28.  
  29. global $woo_options;
  30.  
  31. ?>
  32.  
  33. <!-- #content Starts -->
  34.  
  35. <?php woo_content_before(); ?>
  36.  
  37. <div id="content" class="col-full">
  38.  
  39.  
  40.  
  41. <div id="main-sidebar-container">
  42.  
  43.  
  44.  
  45. <!-- #main Starts -->
  46.  
  47. <?php woo_main_before(); ?>
  48.  
  49. <div id="main" class="col-left">
  50.  
  51.  
  52.  
  53. <?php get_template_part( 'loop', 'index' ); ?>
  54.  
  55.  
  56.  
  57. </div><!-- /#main -->
  58.  
  59. <?php woo_main_after(); ?>
  60.  
  61.  
  62.  
  63. <?php get_sidebar(); ?>
  64.  
  65.  
  66.  
  67. </div><!-- /#main-sidebar-container -->
  68.  
  69.  
  70.  
  71. <?php get_sidebar( 'alt' ); ?>
  72.  
  73.  
  74.  
  75. </div><!-- /#content -->
  76.  
  77. <?php woo_content_after(); ?>
  78.  
  79.  
  80.  
  81. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement