barebones/header.php

25 lines
950 B
PHP
Raw Normal View History

2012-08-30 22:17:00 +02:00
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
2012-11-14 00:53:02 +01:00
<head>
2013-11-21 10:06:43 +01:00
<meta charset="<?php bloginfo( 'charset' ); ?>">
2014-01-30 12:26:35 +01:00
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
2013-11-21 10:06:43 +01:00
<meta name="HandheldFriendly" content="true">
2013-11-21 10:09:05 +01:00
<meta name="MobileOptimized" content="320">
2014-02-21 11:44:42 +01:00
<title><?php wp_title( '' ); ?></title>
2013-11-21 10:06:43 +01:00
<link rel="stylesheet" href="<?php bloginfo( 'stylesheet_url' ); ?>">
2012-11-14 00:53:02 +01:00
<?php wp_head(); ?>
<!--[if lt IE 9]>
2013-11-21 10:07:08 +01:00
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
2014-02-25 12:13:27 +01:00
<script src="http://cdnjs.cloudflare.com/ajax/libs/selectivizr/1.0.2/selectivizr-min.js"></script>
2012-11-14 00:53:02 +01:00
<![endif]-->
</head>
<body <?php body_class(); ?>>
2012-12-20 22:05:46 +01:00
<header class="header" role="banner">
2012-11-14 00:53:02 +01:00
<div class="container">
2012-12-20 22:05:46 +01:00
<nav role="navigation">
2014-03-31 17:15:18 +02:00
<?php wp_nav_menu( array( 'theme_location' => 'header' ) ); ?>
2012-11-14 00:53:02 +01:00
</nav>
</div>
2013-08-06 10:50:23 +02:00
</header>