Guest User

heyshamsw index.php

a guest
Feb 29th, 2012
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.46 KB | None | 0 0
  1. <?php
  2.  
  3.  
  4.  
  5.     // calling the header.php
  6.  
  7.     get_header();
  8.  
  9.  
  10.  
  11.     // action hook for placing content above #container
  12.  
  13.     thematic_abovecontainer();
  14.  
  15.  
  16.  
  17. ?>
  18.  
  19.  
  20.  
  21.         <div id="container">
  22.  
  23.    
  24.  
  25.             <?php thematic_abovecontent(); ?>
  26.  
  27.    
  28.  
  29.             <div id="content">
  30.  
  31.  
  32.  
  33.                 <?php
  34.  
  35.                
  36.  
  37.                 // create the navigation above the content
  38.  
  39.                 thematic_navigation_above();
  40.  
  41.                
  42.  
  43.                 // calling the widget area 'index-top'
  44.  
  45.                 get_sidebar('index-top');
  46.  
  47.                
  48.  
  49.                 // action hook for placing content above the index loop
  50.  
  51.                 thematic_above_indexloop();
  52.  
  53.                
  54.  
  55.                 // action hook creating the index loop
  56.  
  57.                 thematic_indexloop();
  58.  
  59.                
  60.  
  61.                 // action hook for placing content below the index loop
  62.  
  63.                 thematic_below_indexloop();
  64.  
  65.                
  66.  
  67.                 // calling the widget area 'index-bottom'
  68.  
  69.                 get_sidebar('index-bottom');
  70.  
  71.                
  72.  
  73.                 // create the navigation below the content
  74.  
  75.                 thematic_navigation_below();
  76.  
  77.                
  78.  
  79.                 ?>
  80.  
  81.                
  82.  
  83.             </div><!-- #content -->
  84.  
  85.        
  86.  
  87.             <?php thematic_belowcontent(); ?>
  88.  
  89.        
  90.  
  91.         </div><!-- #container -->
  92.  
  93.  
  94.  
  95. <?php
  96.  
  97.  
  98.  
  99.     // action hook for placing content below #container
  100.  
  101.     thematic_belowcontainer();
  102.  
  103.  
  104.  
  105.     // calling the standard sidebar
  106.  
  107.     thematic_sidebar();
  108.  
  109.    
  110.  
  111.     // calling footer.php
  112.  
  113.     get_footer();
  114.  
  115.  
  116.  
  117. ?>
Advertisement
Add Comment
Please, Sign In to add comment