-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathheader.php
More file actions
24 lines (19 loc) · 833 Bytes
/
header.php
File metadata and controls
24 lines (19 loc) · 833 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
<!doctype html>
<html <?php language_attributes(); ?>>
<head <?php hybrid_attr('head'); ?>>
<meta http-equiv="x-ua-compatible" content="ie=edge">
<?php wp_head(); ?>
</head>
<body <?php hybrid_attr('body'); ?>>
<!--[if lt IE 10]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://whatbrowser.org">Upgrade your browser</a> for a safer and more enjoyable web experience.</p>
<![endif]-->
<header <?php hybrid_attr('header'); ?>>
<div <?php hybrid_attr('branding'); ?>>
<?php hybrid_site_title(); ?>
<?php hybrid_site_description(); ?>
<div class="mdl-layout-spacer"></div>
<?php get_search_form(); ?>
</div>
<?php hybrid_get_menu('primary'); ?>
</header>