-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
55 lines (48 loc) · 2.52 KB
/
header.php
File metadata and controls
55 lines (48 loc) · 2.52 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
55
<?php
/**
* The Header for our theme.
*
* Displays all of the <head> section and everything up till <div id="main">
*
* @package nbr
*/
?><!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="google-site-verification" content="_ABcKAXYpXY8R5wZid8MT6eVzu4v4eyy98PZfrLZzUo" />
<meta name="google-site-verification" content="V3PYRWtjXfq8szNB35MDhy6kjyDxNrTpHKdcwf8qyNg" />
<title><?php if (is_home()) { wp_title('', true, 'right'); } else { wp_title( '|', true, 'right' ); } ?></title>
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
<?php wp_head(); ?>
<!--[if lt IE 9]>
<script src="<?php echo(get_template_directory_uri().'/js/html5shiv.js'); ?>"></script>
<![endif]-->
</head>
<body <?php body_class('bg-90'); ?>>
<div id="page" class="hfeed site">
<!--[if lt IE 9]>
<div class="browsehappy">
<p>Welcome to the National Board of Review's website. You are using a browser that is <strong>outdated</strong>.To improve your experience on our site please <strong><a href="http://browsehappy.com/" target="_blank">upgrade your browser » </a></strong></p>
</div>
<![endif]-->
<?php do_action( 'before' ); ?>
<header id="masthead" class="site-header" role="banner">
<div class="site-branding">
<h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><img src="<?php echo(get_template_directory_uri() . '/images/nbr-logo.png'); ?>" title="<?php bloginfo( 'name' ); ?>" /></a></h1>
<h2 class="site-description"><?php bloginfo( 'description' ); ?></h2>
</div>
<nav id="site-navigation" class="nav navigation-main" role="navigation">
<h1 class="menu-toggle"><a href="#page" alt="Menu">Menu</a></h1>
<div class="screen-reader-text skip-link"><a href="#content" title="<?php esc_attr_e( 'Skip to content', 'nbr' ); ?>"><?php _e( 'Skip to content', 'nbr' ); ?></a></div>
<?php wp_nav_menu( array( 'theme_location' => 'column_one' ) ); ?>
<?php wp_nav_menu( array( 'theme_location' => 'column_two' ) ); ?>
<?php wp_nav_menu( array( 'theme_location' => 'column_three' ) ); ?>
</nav><!-- #site-navigation -->
</header><!-- #masthead -->
<div id="search-dropdown" data-selector="search">
<?php get_search_form(); ?>
</div>
<div id="main" class="site-main bg-88">