-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
45 lines (45 loc) · 1.83 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>
<!--[if IE 7]>
<html class="ie ie7" <?php language_attributes(); ?>>
<![endif]-->
<!--[if IE 8]>
<html class="ie ie8" <?php language_attributes(); ?>>
<![endif]-->
<!--[if !(IE 7) | !(IE 8) ]><!-->
<html <?php language_attributes(); ?>>
<!--<![endif]-->
<head>
<meta http-equiv="content-type" content="<?php bloginfo('html_type') ?>; charset=<?php bloginfo('charset') ?>" />
<meta name="viewport" content="width=device-width" />
<title><?php wp_title( '|', true, 'right' ); ?></title>
<link rel="pingback" href="<?php bloginfo('pingback_url') ?>" />
<?php wp_head() ?>
</head>
<body <?php body_class(); ?> >
<div id="wrapperimage" class="headerimage">
</div>
<div id="wrapperpub" class="header">
<div id="header" class="container">
<div id="mainlogo" class="">
<div id="blog-title" class="blogtitle"><a href="<?php echo esc_url(home_url( '/' )); ?>" title="<?php bloginfo('name') ?>"><?php bloginfo('name') ?></a></div>
<div class="description"><?php bloginfo('description'); ?> </div>
</div>
<div class="mobileoff">
<nav id="primary-navigation-mobileoff" class="site-navigation primary-navigation-mobileoff" role="navigation">
<?php wp_nav_menu( array( 'theme_location' => 'primary', 'menu_class' => 'nav-menu-mobileoff' ) ); ?>
</nav>
</div>
<div class="mobileon">
<nav id="primary-navigation" class="site-navigation primary-navigation" role="navigation">
<button class="menu-toggle"><?php _e( 'Primary Menu', 'codium-now' ); ?></button>
<div class="clear"></div>
<?php wp_nav_menu( array( 'theme_location' => 'primary', 'menu_class' => 'nav-menu' ) ); ?>
</nav>
</div>
</div>
<!-- #header -->
</div>
<!-- #wrapperpub -->
<div class="clear"></div>
<div id="wrapper" class="container">
<div class="clear"></div>