barebones/header.php

23 lines
902 B
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' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<title><?php wp_title( '' ); ?></title>
<link rel="stylesheet" href="<?php bloginfo( 'stylesheet_url' ); ?>">
<?php wp_head(); ?>
<!--[if lt IE 9]>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/selectivizr/1.0.2/selectivizr-min.js"></script>
<![endif]-->
</head>
<body <?php body_class(); ?>>
<header class="header" role="banner">
<div class="container">
<nav role="navigation">
<?php wp_nav_menu( array( 'theme_location' => 'header' ) ); ?>
</nav>
</div>
2014-04-08 14:27:25 +02:00
</header>