-
Notifications
You must be signed in to change notification settings - Fork 14
/
header.php
26 lines (21 loc) · 874 Bytes
/
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
<!-- Header -->
<div id="header" class="container clearfix">
<a href="<?php bloginfo('url'); ?>" id="logo"><img src="<?php bloginfo('template_url'); ?>/static/img/logo.png" alt="" /></a>
<!-- Navigation -->
<?php
wp_nav_menu( array(
'theme_location' =>'primary' ,
'container' => 'nav',
'container_id' => 'main-nav-menu',
'items_wrap' => '<ul class=sf-menu >%3$s</ul>',
//'menu_class' => 'sf-menu' ,
'fallback_cb' => '',
'depth' => 3,
'walker' => new GK_Nav_Walker
) );
?>
<!-- /Navigation -->
<select id="responsive-main-nav-menu" onchange="javascript:window.location.replace(this.value);">
</select>
</div>
<!-- /Header -->