adeldima

Untitled

Feb 12th, 2012
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.71 KB | None | 0 0
  1.  
  2. <?php
  3.  
  4.   // Creating the doctype
  5.     thematic_create_doctype();
  6.     echo " ";
  7.     language_attributes();
  8.     echo ">\n";
  9.    
  10.     // Creating the head profile
  11.     thematic_head_profile();
  12.  
  13.     // Creating the doc title
  14.     thematic_doctitle();
  15.    
  16.     // Creating the content type
  17.     thematic_create_contenttype();
  18.    
  19.     // Creating the description
  20.     thematic_show_description();
  21.    
  22.     // Creating the robots tags
  23.     thematic_show_robots();
  24.    
  25.     // Creating the canonical URL
  26.     thematic_canonical_url();
  27.    
  28.     // Loading the stylesheet
  29.     thematic_create_stylesheet();
  30.  
  31.     if (THEMATIC_COMPATIBLE_FEEDLINKS) {    
  32.         // Creating the internal RSS links
  33.         thematic_show_rss();
  34.    
  35.         // Creating the comments RSS links
  36.         thematic_show_commentsrss();
  37.     }
  38.    
  39.     // Creating the pingback adress
  40.     thematic_show_pingback();
  41.    
  42.     // Enables comment threading
  43.     thematic_show_commentreply();
  44.  
  45.     // Calling WordPress' header action hook
  46.     wp_head();
  47.  
  48. ?>
  49.     <? //if(function_exists(updateHeader)) updateHeader(); ?>
  50.  
  51. </head>
  52.  
  53.  
  54. <?php
  55. thematic_body();
  56. // action hook for placing content before opening #wrapper
  57. thematic_before();
  58.  
  59. if (apply_filters('thematic_open_wrapper', true)) {
  60.     echo '<div id="wrapper" class="hfeed">';
  61.  
  62. }
  63.    
  64.     // action hook for placing content above the theme header
  65.     thematic_aboveheader();
  66.  
  67.     ?>  
  68.     <div id="header">
  69.    
  70.         <?php
  71.  
  72.         // action hook creating the theme header
  73.         thematic_header();
  74.  
  75.         ?>
  76.  
  77.     </div><!-- #header-->
  78.     <?php
  79.  
  80.     // action hook for placing content below the theme header
  81.     thematic_belowheader();
  82.    
  83.     ?>  
  84.     <div id="main">
Advertisement
Add Comment
Please, Sign In to add comment