-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
45 lines (38 loc) · 1.53 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
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo('charset'); ?>">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>
<a href="#" data-target="nav-mobile" class="sidenav-trigger">
<div class="button_container" id="toggle">
<span class="top"></span>
<span class="middle"></span>
<span class="bottom"></span>
</div>
</a>
<nav role="navigation">
<div class="nav-wrapper container">
<?php wp_nav_menu( $args=array(
'menu_class'=>'sidenav',
'menu_id'=>'nav-mobile',
'theme_location'=>'main'
));
?>
<ul id="nav-mobile" class="sidenav">
<!-- <li class="active"><a href="/">Home</a></li>
<li ><a href="/program">Program</a></li>
<li ><a href="/about">About</a></li>
<li ><a href="/press">Press</a></li>
<li ><a href="/faq">FAQ</a></li>-->
</ul>
</div>
</nav>
<header class="center">
<a href="<?php echo site_url(); ?>" class="logo center">
<img src="<?php echo get_template_directory_uri();?>\images\powercoders-logo-CMYK.svg" alt="POWERCODERS Logo">
</a>
</header>