Share Pastebin
Guest
Public paste!

Rick Beckman

By: a guest | Apr 20th, 2009 | Syntax: PHP | Size: 0.64 KB | Hits: 106 | Expires: Never
Copy text to clipboard
  1. <?php
  2. /**
  3.  * Handle the opening HTML and actions.
  4.  *
  5.  * @package Thesis
  6.  */
  7. ?>
  8. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  9. <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
  10.  
  11. <head profile="http://gmpg.org/xfn/11">
  12.  
  13. <title><?php thesis_output_title(); ?></title>
  14.  
  15. <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
  16. <?php
  17.  
  18. if (is_singular())
  19.         wp_enqueue_script('comment-reply');
  20.  
  21. wp_head(); ?>
  22.  
  23. </head>
  24.  
  25. <body<?php thesis_body_classes(); ?>>
  26.  
  27. <?php thesis_hook_before_html(); ?>