barebones/header.php

29 lines
1.3 KiB
PHP
Raw Normal View History

2012-08-30 22:17:00 +02:00
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
2014-03-31 17:19:42 +02:00
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
2014-08-28 13:10:05 +02:00
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
2015-04-01 18:33:54 +02:00
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
2014-03-31 17:19:42 +02:00
<title><?php wp_title( '' ); ?></title>
2015-01-15 17:57:39 +01:00
<link rel="dns-prefetch" href="//google-analytics.com">
2014-03-31 17:19:42 +02:00
<link rel="stylesheet" href="<?php bloginfo( 'stylesheet_url' ); ?>">
<link rel="shortcut icon" href="/favicon.ico">
<link rel="apple-touch-icon" href="<?php echo get_template_directory_uri(); ?>/img/favicon.png">
2014-03-31 17:19:42 +02:00
<?php wp_head(); ?>
2014-04-16 14:06:11 +02:00
<!--[if lt IE 10]>
<script src="//cdnjs.cloudflare.com/ajax/libs/placeholders/3.0.2/placeholders.min.js"></script>
<![endif]-->
2014-03-31 17:19:42 +02:00
<!--[if lt IE 9]>
2015-03-09 11:56:55 +01:00
<script src="//css3-mediaqueries-js.googlecode.com/svn/trunk/css3-mediaqueries.js"></script>
2015-04-01 18:33:54 +02:00
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
2014-04-16 14:06:11 +02:00
<script src="//cdnjs.cloudflare.com/ajax/libs/selectivizr/1.0.2/selectivizr-min.js"></script>
2014-03-31 17:19:42 +02:00
<![endif]-->
</head>
<body <?php body_class(); ?>>
2015-04-02 11:43:58 +02:00
<header class="header" role="banner">
2014-03-31 17:19:42 +02:00
<div class="container">
<nav role="navigation">
<?php wp_nav_menu( array( 'theme_location' => 'header' ) ); ?>
</nav>
</div>
2015-04-02 11:43:58 +02:00
</header>