-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
executable file
·50 lines (37 loc) · 2.07 KB
/
header.php
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!doctype html>
<!--[if lt IE 7]><html <?php language_attributes(); ?> class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if (IE 7)&!(IEMobile)]><html <?php language_attributes(); ?> class="no-js lt-ie9 lt-ie8"><![endif]-->
<!--[if (IE 8)&!(IEMobile)]><html <?php language_attributes(); ?> class="no-js lt-ie9"><![endif]-->
<!--[if gt IE 8]><!--> <html <?php language_attributes(); ?> class="no-js gt-ie8"><!--<![endif]-->
<head>
<meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title><?php wp_title(''); ?></title>
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="robots" content="noindex, nofollow">
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>">
<?php wp_head(); ?>
<!--[if lt IE 9]><script>document.createElement('header');document.createElement('nav');document.createElement('section');document.createElement('article');document.createElement('aside');document.createElement('footer');</script><style>header, nav, section, article, aside, footer { display:block;}</style><![endif]-->
</head>
<body <?php body_class(current_user_can('edit_others_posts') ? 'user-is-admin' : ''); ?>>
<div id="container">
<header class="header" role="banner">
<div id="inner-header" class="wrap clearfix">
<p id="logo" itemscope itemtype="http://schema.org/Organization">
<a itemprop="url" href="<?php echo home_url(); ?>" rel="nofollow">
<img itemprop="logo" src="<?php bloginfo('template_url'); ?>/library/images/logo.svg" alt="<?php bloginfo('name'); ?>">
</a>
</p>
<nav role="navigation">
<a class="clickable animated mobile-only">
<div class="menu-icon">
<div></div>
<div></div>
<div></div>
</div>
</a>
<?php bones_main_nav(); ?>
</nav>
</div> <!-- end #inner-header -->
</header> <!-- end header -->