-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathheader.php
64 lines (51 loc) · 1.72 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
<!--[if lt IE 9]>
<script src="<?php echo esc_url( get_template_directory_uri() ); ?>/js/html5.js"></script>
<![endif]-->
<?php wp_head(); ?>
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>">
<?php if ( is_user_logged_in() ) { echo '<style type="text/css" media="screen"> .header_nav { top: 32px; } </style>'; } ?>
</head>
<body <?php body_class(); ?>>
<header class="header">
<nav class="header_nav">
<div class="nav_logo_big">
<h1 class="nav_title_big">
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home">
<?php bloginfo( 'name' ); ?>
</a>
</h1>
</div>
<div class="nav_logo_left">
<h1 class="nav_title_left">
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home">
<?php bloginfo( 'name' ); ?>
</a>
</h1>
</div>
<div class="nav_main">
<?php wp_nav_menu( array( 'theme_location' => 'main' ) ); ?>
</div>
<div class="nav_search">
<form id="nav_search_form" method="get" action="<?php echo esc_url( home_url( '/' ) ); ?>">
<input class="nav_search_input" type="text" name="s" id="s" placeholder="Search" size="10" />
</form>
</div>
</nav>
<hgroup class="header_hgroup">
<h1 class="header_title">
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home">
<?php bloginfo( 'name' ); ?>
</a>
</h1>
<h2 id="site-description"><?php bloginfo( 'description' ); ?></h2>
</hgroup>
</header>
<div class="content">