forked from html5blank/html5blank
-
Notifications
You must be signed in to change notification settings - Fork 1
/
header.php
51 lines (39 loc) · 1.5 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
51
<!DOCTYPE html>
<!--[if lt IE 7]><html <?php language_attributes(); ?> class="no-js lt-ie9 lt-ie8 lt-ie7"><![endif]-->
<!--[if IE 7]><html <?php language_attributes(); ?> class="no-js lt-ie9 lt-ie8"><![endif]-->
<!--[if IE 8]><html <?php language_attributes(); ?> class="no-js lt-ie9"><![endif]-->
<!--[if gt IE 8]><!--><html <?php language_attributes(); ?> class="no-js"><!--<![endif]-->
<head>
<meta charset="UTF-8">
<title><?php wp_title(''); ?><?php if(wp_title('', false)) { echo ' :'; } ?> <?php bloginfo('name'); ?></title>
<!-- Meta -->
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0;">
<meta name="description" content="<?php bloginfo('description'); ?>">
<link rel="shortcut icon" href="<?php echo get_template_directory_uri(); ?>/favicon.ico">
<!-- CSS + jQuery + JavaScript -->
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<!-- Header -->
<header>
<!-- Wrapper -->
<div class="wrapper">
<!-- Logo -->
<div id="logo">
<a href="<?php echo home_url(); ?>">
<img src="<?php echo get_template_directory_uri(); ?>/img/logo.png" alt="Logo">
</a>
</div>
<!-- /Logo -->
<!-- Nav -->
<nav>
<?php wp_nav_menu(array('theme_location' => 'header-menu', 'items_wrap' => '<ul>%3$s</ul>')); ?>
</nav>
<!-- /Nav -->
<br class="clear">
</div>
<!-- /Wrapper -->
</header>
<!-- /Header -->
<!-- Wrapper -->
<div class="wrapper">