Advertisement
Guest User

Untitled

a guest
Apr 28th, 2014
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.04 KB | None | 0 0
  1. <?php
  2. /**
  3.  * The Header template for our theme
  4.  *
  5.  * Displays all of the <head> section and everything up till <div id="main">
  6.  *
  7.  * @package WordPress
  8.  * @subpackage Twenty_Twelve
  9.  * @since Twenty Twelve 1.0
  10.  */
  11. ?><!DOCTYPE html>
  12. <!--[if IE 7]>
  13. <html class="ie ie7" <?php language_attributes(); ?>>
  14. <![endif]-->
  15. <!--[if IE 8]>
  16. <html class="ie ie8" <?php language_attributes(); ?>>
  17. <![endif]-->
  18. <!--[if !(IE 7) | !(IE 8)  ]><!-->
  19. <html <?php language_attributes(); ?>>
  20. <!--<![endif]-->
  21. <head>
  22. <meta charset="<?php bloginfo( 'charset' ); ?>" />
  23. <meta name="viewport" content="width=device-width" />
  24. <title><?php wp_title( '|', true, 'right' ); ?></title>
  25. <link rel="profile" href="http://gmpg.org/xfn/11" />
  26. <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
  27. <?php // Loads HTML5 JavaScript file to add support for HTML5 elements in older IE versions. ?>
  28. <!--[if lt IE 9]>
  29. <script src="<?php echo get_template_directory_uri(); ?>/js/html5.js" type="text/javascript"></script>
  30. <![endif]-->
  31. <?php wp_head(); ?>
  32. </head>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement