-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
executable file
·77 lines (49 loc) · 2.15 KB
/
header.php
File metadata and controls
executable file
·77 lines (49 loc) · 2.15 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!doctype html>
<html <?php language_attributes(); ?> class="no-js">
<head>
<meta charset="<?php bloginfo('charset'); ?>">
<title><?php wp_title(''); ?><?php if(wp_title('', false)) { echo ' :'; } ?> <?php bloginfo('name'); ?></title>
<link href="//www.google-analytics.com" rel="dns-prefetch">
<link href="<?php echo get_template_directory_uri(); ?>/src/images/icons/favicon.ico" rel="shortcut icon">
<link href="<?php echo get_template_directory_uri(); ?>/src/images/icons/touch.png" rel="apple-touch-icon-precomposed">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="<?php bloginfo('description'); ?>">
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<!-- header -->
<header class="header fullwidth fullwidth-sm clear" canvas="" role="banner">
<div class="container header_container">
<!-- logo -->
<div class="logo">
<a href="<?php echo home_url(); ?>">
<img src="<?php echo get_template_directory_uri(); ?>/src/images/logo.png" alt="Logo" class="logo_img">
</a>
</div>
<!-- /logo -->
<!-- nav -->
<nav class="main-nav" role="navigation">
<?php html5blank_nav(); ?>
</nav>
<!-- /nav -->
<!-- Mobile Nav Toggle -->
<a href="#" class="mobile-nav__toggle">
<img src="<?php echo get_template_directory_uri(); ?>/src/images/nav-icon.png" alt="Nav Icon">
</a>
</div>
</header>
<!-- /header -->
<!-- Mobile Nav via Slidebars-->
<div off-canvas="id-1 right push" class="mobile-nav">
<div class="container">
<div class="mobile-nav_content">
<div class="mobile-nav_logo">
<a href="/" class="">
<img src="<?php echo get_template_directory_uri(); ?>/src/images/logo.png" class="" alt="Mobile Nav Logo">
</a>
</div>
<?php html5blank_mobile_nav(); ?>
</div>
</div>
</div>