-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathheader.php
64 lines (64 loc) · 1.56 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
52
53
54
55
56
57
58
59
60
61
62
63
64
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title><?php wp_title( '|' ); ?></title>
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<header class="main-header is-hidden-mobile">
<figure class="site-logo">
<a href="<?php bloginfo('url') ?>">
<img src="<?php echo THEME_IMG.'/openglam-logo.svg' ?>" alt="">
</a>
</figure>
<nav class="main-navigation">
<?php
wp_nav_menu(
array(
'theme_location' => 'main-navigation',
'depth' => 2,
'container' => '',
'items_wrap' => '<ul id="%1$s">%3$s</ul>',
'menu_class' => 'navbar-menu',
'menu_id' => 'primary-menu',
'after' => '</div>'
)
);
?>
</nav>
</nav>
</header>
<header class="mobile-header is-hidden-tablet">
<div class="level">
<div class="level-left">
<figure class="site-logo">
<a href="<?php bloginfo('url') ?>">
<img src="<?php echo THEME_IMG.'/openglam-logo.svg' ?>" alt="">
</a>
</figure>
</div>
<div class="level-right">
<a href="#" class="open-menu">
<i class="icon bars"></i>
<i class="icon cross"></i>
</a>
</div>
</div>
<nav class="mobile-navigation">
<?php
wp_nav_menu(
array(
'theme_location' => 'main-navigation',
'depth' => 1,
'container' => '',
'items_wrap' => '<ul id="%1$s">%3$s</ul>',
'menu_class' => 'navbar-menu',
'menu_id' => 'primary-menu',
'after' => '</div>'
)
);
?>
</nav>
</header>