-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
30 lines (24 loc) · 776 Bytes
/
header.php
File metadata and controls
30 lines (24 loc) · 776 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!doctype html>
<html <?php language_attributes(); ?> class="no-js">
<head>
<meta charset="<?php bloginfo('charset'); ?>">
<title><?php wp_title(''); ?></title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<!-- header -->
<header>
<div class="header container clear" role="banner">
<div class="row">
<a href="<?php echo bloginfo('url'); ?>" title="<?php echo bloginfo('name'); ?>">LOGO</a>
<nav class="nav" role="navigation">
<?php wp_nav_menu(array('theme_location' => 'header-menu' )); ?>
</nav>
<div class="menu-toggle">MENU</div>
</div>
</div>
<div class="header-spacer"></div>
</header>
<!-- /header -->