-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
68 lines (52 loc) · 1.2 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
65
66
67
68
<?php
/**
* Default theme header
*
* Displays the <head> section as well as the opening tag for the body
*
* @package una
* @since una 1.0.0
* @license GPL 2.0
*
*/
?>
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo("charset"); ?>" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<!-- Responsive stylesheet -->
<meta name="viewport" content="width=device-width,initial-scale=1" />
<?php indented_wp_head(); ?>
</head>
<body <?php body_class(); ?> >
<header class="Header">
<div class="Container">
<div class="Top">
<div class="Inner">
<div class="Logo">
<a href="<?php bloginfo("url"); ?>">
<?php bloginfo("name"); ?>
</a>
</div>
<div class="HamburgerButton">
<i class="ph-list"></i>
</div>
</div>
</div>
<nav class="Navigation">
<?php wp_nav_menu(["theme_location" => "header-menu"]); ?>
</nav>
</div>
</header>
<div class="HamburgerMenu">
<div class="Container">
<div class="Inner">
<div class="CloseButton">
<i class="ph-x"></i>
</div>
<?php wp_nav_menu(["theme_location" => "header-menu"]); ?>
</div>
</div>
</div>
<main class="Main">