-
Notifications
You must be signed in to change notification settings - Fork 1
/
header.php
42 lines (26 loc) · 1.25 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>e_Web Starter Theme</title>
<link rel="stylesheet" href="src/waves/waves.min.css">
<?php wp_head(); ?>
</head>
<body <?php body_class();?> >
<header class="masthead mb-auto">
<nav class="navbar navbar-expand-md navbar-light bg-light" role="navigation">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1"
aria-controls="bs-example-navbar-collapse-1" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<a class="navbar-brand" href="<?php echo home_url(); ?>"><?php bloginfo(); ?></a>
<!-- Navwalker menu -->
<span class="my-menu"><?php get_template_part('inc/navwalker', 'menu') ?></span>
</div>
</nav>
</header>