-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathheader.php
More file actions
executable file
·54 lines (54 loc) · 2.32 KB
/
header.php
File metadata and controls
executable file
·54 lines (54 loc) · 2.32 KB
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
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" type="image/x-icon" href="<?php echo home_url(); ?>/favicon.png">
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
<!--[if lt IE 9]>
<script src="<?php echo get_template_directory_uri(); ?>/assets/js/vendor/html5shiv.min.js"></script>
<![endif]-->
<script>
window.homeURL = "<?php echo home_url();?>";
window.themeURL = "<?php echo get_template_directory_uri();?>";
window.nonce = "<?php echo wp_create_nonce( 'work-nonce' ); ?>";
window.ajaxurl = "<?php echo admin_url( 'admin-ajax.php' );?>";
</script>
<!--
<script type="text/javascript" src="http://use.typekit.com/mpe4ylu.js"></script>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
-->
<?php wp_head(); ?>
</head>
<body <?php body_ID(); ?> <?php body_class(); ?>>
<div id="page" class="page_wrap">
<header id="header" class="page_header">
<div class="container">
<nav id="nav" class="col_12">
<div class="col_5 gutter_pad">
<a href="#" class="button alignleft">Member SignUp</a>
<?php $leftMenuParams = array( 'theme_location' => 'left-menu', 'container' => false, 'items_wrap' => '%3$s' ) ; ?>
<ul id="left-menu" class="menu left-menu">
<?php wp_nav_menu( $leftMenuParams ); ?>
</ul>
</div>
<a class="col_2 gutter_pad header_logo" href="<?php echo home_url(); ?>">
<img src="<?php echo get_template_directory_uri();?>/assets/images/logo.png" class="full-width" alt="" />
</a>
<div class="col_5 gutter_pad">
<a href="#" class="button alignright">Member Login</a>
<?php $rightMenuParams = array( 'theme_location' => 'right-menu', 'container' => false, 'items_wrap' => '%3$s' ) ; ?>
<ul id="right-menu" class="right-menu menu">
<?php wp_nav_menu( $rightMenuParams ); ?>
</ul>
</div>
</nav>
<button id="nav_toggle" class="button nav_toggle">
<div class="toggle_icon">
<span class="toggle_icon_line top_line"></span>
<span class="toggle_icon_line mid_line"></span>
<span class="toggle_icon_line bot_line"></span>
</div>
</button>
</div>
</header>