header.php 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <!doctype html>
  2. <!--[if lt IE 7 ]> <html lang="en" class="no-js ie6"> <![endif]-->
  3. <!--[if IE 7 ]> <html lang="en" class="no-js ie7"> <![endif]-->
  4. <!--[if IE 8 ]> <html lang="en" class="no-js ie8"> <![endif]-->
  5. <!--[if IE 9 ]> <html lang="en" class="no-js ie9"> <![endif]-->
  6. <!--[if (gt IE 9)|!(IE)]><!--> <html lang="en" 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 & facivons -->
  15. <link rel="shortcut icon" href="<?php bloginfo('template_directory'); ?>/favicon.ico">
  16. <link rel="apple-touch-icon" href="<?php bloginfo('template_directory'); ?>/library/images/apple-touch-icon.png">
  17. <!-- stylesheets -->
  18. <link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/library/css/style.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 bloginfo('template_directory'); ?>/library/js/libs/jquery-1.4.2.js"%3E%3C/script%3E'))</script>
  22. <script src="<?php bloginfo('template_directory'); ?>/library/js/libs/modernizr-1.6.min.js"></script>
  23. <script src="<?php bloginfo('template_directory'); ?>/library/js/libs/imgsizer.js"></script>
  24. <!--[if lt IE 9]>
  25. <script src="<?php bloginfo('template_directory'); ?>/library/js/libs/ie/DOMAssistant-2.0.min.js"></script>
  26. <script src="<?php bloginfo('template_directory'); ?>/library/js/libs/ie/selectivizr.js"></script>
  27. <![endif]-->
  28. <!-- wordpress head functions -->
  29. <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
  30. <?php wp_head(); ?>
  31. <!-- stylesheet is called after wp_head so you can overwrite plugin styles if needed -->
  32. <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>">
  33. </head>
  34. <body <?php body_class(); ?>>
  35. <div id="container">
  36. <header role="banner">
  37. <div id="inner-header">
  38. <h1 id="logo"><a href="<?php bloginfo('url'); ?>" rel="nofollow"><?php bloginfo('name'); ?></a></h1>
  39. <nav role="navigation">
  40. <?php bones_main_nav(); // Adjust using Menus in Wordpress Admin ?>
  41. </nav>
  42. </div> <!-- end #inner-header -->
  43. </header> <!-- end header -->