2012-08-30 22:17:00 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html <?php language_attributes(); ?>>
|
2012-11-14 00:53:02 +01:00
|
|
|
<head>
|
|
|
|
<meta charset="<?php bloginfo( 'charset' ); ?>" />
|
2013-07-01 23:42:22 +02:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1.0" />
|
2013-02-03 20:26:53 +01:00
|
|
|
<meta name="HandheldFriendly" content="true" />
|
2013-07-04 23:32:29 +02:00
|
|
|
<title><?php wp_title( ' / ', true, 'right' ); bloginfo( 'name' ); ?></title>
|
2012-11-14 00:53:02 +01:00
|
|
|
<link rel="stylesheet" href="<?php bloginfo( 'stylesheet_url' ); ?>" />
|
|
|
|
<?php wp_head(); ?>
|
|
|
|
<!--[if lt IE 9]>
|
|
|
|
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
|
|
|
|
<![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">
|
2012-11-14 00:53:02 +01:00
|
|
|
<ul class="nav">
|
2012-12-20 22:18:50 +01:00
|
|
|
<?php wp_list_pages( 'title_li=' ); ?>
|
2012-11-14 00:53:02 +01:00
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
</div>
|
2013-08-06 10:50:23 +02:00
|
|
|
</header>
|