-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
40 lines (36 loc) · 1.07 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
<!DOCTYPE html>
<html lang="en" <?php language_attributes(); ?>>
<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(); ?>>
<?php wp_body_open(); ?>
<header>
<div class="container">
<a href="<?php echo get_home_url();?>" class="brand"><?php echo get_bloginfo('name')?></a>
<div class="menu">
<?php wp_nav_menu(
array(
'theme_location' => 'top-menu',
'menu_class' => 'top-bar'
)
); ?>
<div class="mobile-nav">
<?php wp_nav_menu(
array(
'theme_location' => 'mobile-menu',
'menu_class' => 'mobile-menu'
)
); ?>
<span class="close-menu"><i class="fas fa-times"></i></span>
</div>
<span class="hamburger"><i class="fas fa-bars"></i></span>
<div class="search-form">
<?php get_search_form();?>
</div>
</div>
</div>
</header>