Advertisement
Guest User

Untitled

a guest
Oct 30th, 2010
282
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.68 KB | None | 0 0
  1. <?php
  2.  
  3. // Creating the doctype
  4. thematic_create_doctype();
  5. echo " ";
  6. language_attributes();
  7. echo ">\n";
  8.  
  9. // Creating the head profile
  10. thematic_head_profile();
  11.  
  12. // Creating the doc title
  13. thematic_doctitle();
  14.  
  15. // Creating the content type
  16. thematic_create_contenttype();
  17.  
  18. // Creating the description
  19. thematic_show_description();
  20.  
  21. // Creating the robots tags
  22. thematic_show_robots();
  23.  
  24. // Creating the canonical URL
  25. thematic_canonical_url();
  26.  
  27. // Loading the stylesheet
  28. thematic_create_stylesheet();
  29.  
  30. if (THEMATIC_COMPATIBLE_FEEDLINKS) {
  31. // Creating the internal RSS links
  32. thematic_show_rss();
  33.  
  34. // Creating the comments RSS links
  35. thematic_show_commentsrss();
  36. }
  37.  
  38. // Creating the pingback adress
  39. thematic_show_pingback();
  40.  
  41. // Enables comment threading
  42. thematic_show_commentreply();
  43.  
  44. // Calling WordPress' header action hook
  45. wp_head();
  46.  
  47. ?>
  48.  
  49.  
  50. </head>
  51.  
  52. <?php
  53.  
  54. thematic_body();
  55.  
  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. // action hook for placing content above the theme header
  64. thematic_aboveheader();
  65.  
  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
Advertisement