-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
49 lines (41 loc) · 1.28 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
<!doctype html>
<html class="ui" <?php language_attributes(); ?>>
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="MobileOptimized" content="320">
<meta name="HandheldFriendly" content="True">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="viewport" content="width=device-width, initial-scale=1">
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<div class="ui-base" id="menu">
<?php
if (is_active_sidebar('responsive-menu-widget-1')) {
dynamic_sidebar('responsive-menu-widget-1');
}
wp_nav_menu(array(
'theme_location' => 'responsive-menu',
'container' => false,
));
if (is_active_sidebar('responsive-menu-widget-2')) {
dynamic_sidebar('responsive-menu-widget-2');
}
?>
</div>
<div id="panel">
<div class="js-slideout-toggle ui-base"><i class="fas fa-bars"></i></div>
<div class="hmenu">
<nav class="ui-base">
<?php
wp_nav_menu(array(
'theme_location' => 'main-menu',
'container' => false,
));
?>
</nav>
</div>
<div id="wrap">
<div id="wrapper" class="hfeed">
<div id="container">