2013-07-28 18:55:10 -04:00
|
|
|
<?php
|
|
|
|
/**
|
2013-10-11 18:02:11 -04:00
|
|
|
* The Header for our theme
|
2013-07-28 18:55:10 -04:00
|
|
|
*
|
|
|
|
* Displays all of the <head> section and everything up till <div id="main">
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Twenty_Fourteen
|
2013-10-11 18:02:11 -04:00
|
|
|
* @since Twenty Fourteen 1.0
|
2013-07-28 18:55:10 -04:00
|
|
|
*/
|
|
|
|
?><!DOCTYPE html>
|
2013-11-11 23:18:11 -05:00
|
|
|
<!--[if IE 7]>
|
2013-12-06 12:16:11 -05:00
|
|
|
<html class="ie ie7" <?php language_attributes(); ?>>
|
2013-11-11 23:18:11 -05:00
|
|
|
<![endif]-->
|
|
|
|
<!--[if IE 8]>
|
2013-12-06 12:16:11 -05:00
|
|
|
<html class="ie ie8" <?php language_attributes(); ?>>
|
2013-11-11 23:18:11 -05:00
|
|
|
<![endif]-->
|
2014-05-07 00:27:15 -04:00
|
|
|
<!--[if !(IE 7) & !(IE 8)]><!-->
|
2013-12-06 12:16:11 -05:00
|
|
|
<html <?php language_attributes(); ?>>
|
2013-11-11 23:18:11 -05:00
|
|
|
<!--<![endif]-->
|
2013-07-28 18:55:10 -04:00
|
|
|
<head>
|
2013-12-05 12:54:09 -05:00
|
|
|
<meta charset="<?php bloginfo( 'charset' ); ?>">
|
|
|
|
<meta name="viewport" content="width=device-width">
|
2013-11-11 23:18:11 -05:00
|
|
|
<title><?php wp_title( '|', true, 'right' ); ?></title>
|
2020-07-03 19:42:01 -04:00
|
|
|
<link rel="profile" href="https://gmpg.org/xfn/11">
|
2019-01-09 01:11:51 -05:00
|
|
|
<link rel="pingback" href="<?php echo esc_url( get_bloginfo( 'pingback_url' ) ); ?>">
|
2013-11-11 23:18:11 -05:00
|
|
|
<!--[if lt IE 9]>
|
2019-08-07 21:29:58 -04:00
|
|
|
<script src="<?php echo get_template_directory_uri(); ?>/js/html5.js?ver=3.7.0"></script>
|
2013-11-11 23:18:11 -05:00
|
|
|
<![endif]-->
|
|
|
|
<?php wp_head(); ?>
|
2013-07-28 18:55:10 -04:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body <?php body_class(); ?>>
|
Bundled Theme: trigger a new `wp_body_open` action immediately after the opening `body` tag.
* Enables inserting (asynchronous) JavaScript right after the opening `body` tag.
* Add a `wp_body_open` helper function that triggers the `wp_body_open` action.
* Call `wp_body_open` in core themes immediately after the opening `body` tag.
Props joostdevalk, valendesigns, nacin, saracup, jorbin, mikeschinkel, jonnybojangles, lgedeon, Willscrlt, Denis-de-Bernardy, lexiqueen, sky_76, welcher, westonruter, ramiy, joyously.
Fixes #12563.
Built from https://develop.svn.wordpress.org/trunk@45042
git-svn-id: http://core.svn.wordpress.org/trunk@44851 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-03-27 17:59:52 -04:00
|
|
|
<?php wp_body_open(); ?>
|
2013-07-28 18:55:10 -04:00
|
|
|
<div id="page" class="hfeed site">
|
2016-11-14 12:17:31 -05:00
|
|
|
<?php if ( get_header_image() ) : ?>
|
2013-07-28 18:55:10 -04:00
|
|
|
<div id="site-header">
|
2013-10-09 15:07:09 -04:00
|
|
|
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home">
|
2014-10-06 08:44:17 -04:00
|
|
|
<img src="<?php header_image(); ?>" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>">
|
2013-07-28 18:55:10 -04:00
|
|
|
</a>
|
|
|
|
</div>
|
2013-08-14 23:13:29 -04:00
|
|
|
<?php endif; ?>
|
2013-07-28 18:55:10 -04:00
|
|
|
|
2013-08-14 23:13:29 -04:00
|
|
|
<header id="masthead" class="site-header" role="banner">
|
2013-09-02 17:25:10 -04:00
|
|
|
<div class="header-main">
|
2013-10-09 15:07:09 -04:00
|
|
|
<h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
|
2013-07-28 18:55:10 -04:00
|
|
|
|
2013-10-24 18:58:48 -04:00
|
|
|
<div class="search-toggle">
|
2015-03-16 14:51:29 -04:00
|
|
|
<a href="#search-container" class="screen-reader-text" aria-expanded="false" aria-controls="search-container"><?php _e( 'Search', 'twentyfourteen' ); ?></a>
|
2013-07-28 18:55:10 -04:00
|
|
|
</div>
|
|
|
|
|
2013-10-24 18:58:48 -04:00
|
|
|
<nav id="primary-navigation" class="site-navigation primary-navigation" role="navigation">
|
2014-03-18 18:37:15 -04:00
|
|
|
<button class="menu-toggle"><?php _e( 'Primary Menu', 'twentyfourteen' ); ?></button>
|
2013-10-24 18:58:48 -04:00
|
|
|
<a class="screen-reader-text skip-link" href="#content"><?php _e( 'Skip to content', 'twentyfourteen' ); ?></a>
|
2017-11-30 18:11:00 -05:00
|
|
|
<?php
|
|
|
|
wp_nav_menu(
|
|
|
|
array(
|
|
|
|
'theme_location' => 'primary',
|
|
|
|
'menu_class' => 'nav-menu',
|
|
|
|
'menu_id' => 'primary-menu',
|
|
|
|
)
|
|
|
|
);
|
2018-08-16 21:51:36 -04:00
|
|
|
?>
|
2013-07-28 18:55:10 -04:00
|
|
|
</nav>
|
|
|
|
</div>
|
|
|
|
|
2013-09-24 19:04:10 -04:00
|
|
|
<div id="search-container" class="search-box-wrapper hide">
|
2013-10-30 10:39:10 -04:00
|
|
|
<div class="search-box">
|
2013-09-02 17:25:10 -04:00
|
|
|
<?php get_search_form(); ?>
|
2013-07-28 18:55:10 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
2013-08-14 23:13:29 -04:00
|
|
|
</header><!-- #masthead -->
|
2013-07-28 18:55:10 -04:00
|
|
|
|
2013-08-14 23:13:29 -04:00
|
|
|
<div id="main" class="site-main">
|