53 lines
2.5 KiB
PHP
53 lines
2.5 KiB
PHP
<!doctype html>
|
|
<!--[if lt IE 9]> <html class="no-js oldie" <?php language_attributes(); ?>> <![endif]-->
|
|
<!--[if gt IE 8]><!--> <html class="no-js" <?php language_attributes(); ?>> <!--<![endif]-->
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
|
|
<title><?php wp_title('|', true, 'right'); ?><?php bloginfo('name'); ?></title>
|
|
|
|
<meta name="viewport" content="width=device-width; initial-scale=1.0">
|
|
|
|
<?php echo get_roots_stylesheets(); ?>
|
|
|
|
<link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> Feed" href="<?php echo home_url(); ?>/feed/">
|
|
|
|
<script src="<?php echo get_template_directory_uri(); ?>/js/libs/modernizr-1.7.min.js"></script>
|
|
<script src="<?php echo get_template_directory_uri(); ?>/js/libs/respond.min.js"></script>
|
|
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
|
|
<script>window.jQuery || document.write('<script src="<?php echo get_template_directory_uri(); ?>/js/libs/jquery-1.6.1.min.js">\x3C/script>')</script>
|
|
|
|
<?php wp_head(); ?>
|
|
<?php roots_head(); ?>
|
|
<?php if (get_option('roots_css_framework') === '1140') { ?>
|
|
<script src="<?php echo get_template_directory_uri(); ?>/js/css3-mediaqueries.js"></script>
|
|
<?php } ?>
|
|
<script src="<?php echo get_template_directory_uri(); ?>/js/scripts.js"></script>
|
|
<?php if (get_option('roots_google_analytics') !== "") { ?>
|
|
<script>
|
|
var _gaq=[['_setAccount','<?php echo get_option('roots_google_analytics') ?>'],['_trackPageview'],['_trackPageLoadTime']];
|
|
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];g.async=1;
|
|
g.src=('https:'==location.protocol?'//ssl':'//www')+'.google-analytics.com/ga.js';
|
|
s.parentNode.insertBefore(g,s)}(document,'script'));
|
|
</script>
|
|
<?php } ?>
|
|
</head>
|
|
<body <?php $page_slug = $post->post_name; body_class($page_slug); ?>>
|
|
<?php roots_wrap_before(); ?>
|
|
<div id="wrap" class="container" role="document">
|
|
<?php roots_header_before(); ?>
|
|
<header id="banner" class="<?php echo roots_container_class; ?>" role="banner">
|
|
<?php roots_header_inside(); ?>
|
|
<div class="container">
|
|
<a id="logo" href="<?php echo home_url(); ?>/"><img src="<?php echo get_template_directory_uri(); ?>/img/logo.png" width="300" height="75" alt="<?php bloginfo('name'); ?>"></a>
|
|
<nav id="nav-main" role="navigation">
|
|
<?php wp_nav_menu(array('theme_location' => 'primary_navigation')); ?>
|
|
</nav>
|
|
<nav id="nav-utility">
|
|
<?php wp_nav_menu(array('theme_location' => 'utility_navigation')); ?>
|
|
</nav>
|
|
</div>
|
|
</header>
|
|
<?php roots_header_after(); ?>
|