27 lines
1008 B
PHP
Executable File
27 lines
1008 B
PHP
Executable File
<!DOCTYPE html>
|
|
<html <?php language_attributes(); ?>>
|
|
<head>
|
|
<meta charset="<?php bloginfo( 'charset' ); ?>">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
|
|
<meta name="HandheldFriendly" content="true">
|
|
<meta name="MobileOptimized" content="320">
|
|
<title><?php wp_title( ' / ', true, 'right' ); bloginfo( 'name' ); ?></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="//cdnjs.cloudflare.com/ajax/libs/modernizr/2.7.1/modernizr.min.js"></script>
|
|
<script src="//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">
|
|
<ul class="nav">
|
|
<?php wp_list_pages( 'title_li=' ); ?>
|
|
</ul>
|
|
</nav>
|
|
</div>
|
|
</header>
|