header.php 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <!doctype html>
  2. <!--[if lt IE 7 ]> <html <?php language_attributes(); ?> class="no-js ie6"> <![endif]-->
  3. <!--[if IE 7 ]> <html <?php language_attributes(); ?> class="no-js ie7"> <![endif]-->
  4. <!--[if IE 8 ]> <html <?php language_attributes(); ?> class="no-js ie8"> <![endif]-->
  5. <!--[if IE 9 ]> <html <?php language_attributes(); ?> class="no-js ie9"> <![endif]-->
  6. <!--[if (gt IE 9)|!(IE)]><!--> <html <?php language_attributes(); ?> class="no-js"> <!--<![endif]-->
  7. <head>
  8. <meta charset="utf-8">
  9. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  10. <title><?php wp_title('&laquo;', true, 'right'); ?></title>
  11. <meta name="description" content="">
  12. <meta name="author" content="">
  13. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  14. <!-- icons & favicons -->
  15. <link rel="shortcut icon" href="<?php echo get_template_directory_uri(); ?>/favicon.ico">
  16. <link rel="apple-touch-icon" href="<?php echo get_template_directory_uri(); ?>/library/images/apple-touch-icon.png">
  17. <!-- default stylesheet -->
  18. <link rel="stylesheet" href="<?php echo get_template_directory_uri(); ?>/library/css/default.css">
  19. <!-- scripts -->
  20. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.js"></script>
  21. <script>!window.jQuery && document.write(unescape('%3Cscript src="<?php echo get_template_directory_uri(); ?>/library/js/libs/jquery-1.4.2.min.js"%3E%3C/script%3E'))</script>
  22. <script src="<?php echo get_template_directory_uri(); ?>/library/js/header.js"></script>
  23. <!--[if lt IE 9]>
  24. <script src="<?php echo get_template_directory_uri(); ?>/library/js/libs/ie/DOMAssistant-2.0.min.js"></script>
  25. <script src="<?php echo get_template_directory_uri(); ?>/library/js/libs/ie/selectivizr.js"></script>
  26. <![endif]-->
  27. <!-- wordpress head functions -->
  28. <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>">
  29. <?php wp_head(); ?>
  30. <!-- stylesheet is called after wp_head so you can overwrite plugin styles if needed -->
  31. <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>">
  32. </head>
  33. <body <?php body_class(); ?>>
  34. <div id="container">
  35. <header role="banner">
  36. <div id="inner-header" class="clear">
  37. <h1 id="logo"><a href="<?php echo home_url(); ?>" rel="nofollow"><?php bloginfo('name'); ?></a></h1>
  38. <nav role="navigation">
  39. <?php bones_main_nav(); // Adjust using Menus in Wordpress Admin ?>
  40. </nav>
  41. </div> <!-- end #inner-header -->
  42. </header> <!-- end header -->