2013-07-29 00:55:10 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2013-10-12 00:02:11 +02:00
|
|
|
* The Header for our theme
|
2013-07-29 00:55:10 +02:00
|
|
|
*
|
|
|
|
* Displays all of the <head> section and everything up till <div id="main">
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Twenty_Fourteen
|
2013-10-12 00:02:11 +02:00
|
|
|
* @since Twenty Fourteen 1.0
|
2013-07-29 00:55:10 +02:00
|
|
|
*/
|
|
|
|
?><!DOCTYPE html>
|
2013-11-12 05:18:11 +01:00
|
|
|
<!--[if IE 7]>
|
2013-12-06 18:16:11 +01:00
|
|
|
<html class="ie ie7" <?php language_attributes(); ?>>
|
2013-11-12 05:18:11 +01:00
|
|
|
<![endif]-->
|
|
|
|
<!--[if IE 8]>
|
2013-12-06 18:16:11 +01:00
|
|
|
<html class="ie ie8" <?php language_attributes(); ?>>
|
2013-11-12 05:18:11 +01:00
|
|
|
<![endif]-->
|
2014-05-07 06:27:15 +02:00
|
|
|
<!--[if !(IE 7) & !(IE 8)]><!-->
|
2013-12-06 18:16:11 +01:00
|
|
|
<html <?php language_attributes(); ?>>
|
2013-11-12 05:18:11 +01:00
|
|
|
<!--<![endif]-->
|
2013-07-29 00:55:10 +02:00
|
|
|
<head>
|
2013-12-05 18:54:09 +01:00
|
|
|
<meta charset="<?php bloginfo( 'charset' ); ?>">
|
|
|
|
<meta name="viewport" content="width=device-width">
|
2013-11-12 05:18:11 +01:00
|
|
|
<title><?php wp_title( '|', true, 'right' ); ?></title>
|
2020-07-04 01:42:01 +02:00
|
|
|
<link rel="profile" href="https://gmpg.org/xfn/11">
|
2019-01-09 07:11:51 +01:00
|
|
|
<link rel="pingback" href="<?php echo esc_url( get_bloginfo( 'pingback_url' ) ); ?>">
|
2013-11-12 05:18:11 +01:00
|
|
|
<!--[if lt IE 9]>
|
2019-08-08 03:29:58 +02:00
|
|
|
<script src="<?php echo get_template_directory_uri(); ?>/js/html5.js?ver=3.7.0"></script>
|
2013-11-12 05:18:11 +01:00
|
|
|
<![endif]-->
|
|
|
|
<?php wp_head(); ?>
|
2013-07-29 00:55:10 +02: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 22:59:52 +01:00
|
|
|
<?php wp_body_open(); ?>
|
2013-07-29 00:55:10 +02:00
|
|
|
<div id="page" class="hfeed site">
|
2016-11-14 18:17:31 +01:00
|
|
|
<?php if ( get_header_image() ) : ?>
|
2013-07-29 00:55:10 +02:00
|
|
|
<div id="site-header">
|
2013-10-09 21:07:09 +02:00
|
|
|
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home">
|
2014-10-06 14:44:17 +02: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-29 00:55:10 +02:00
|
|
|
</a>
|
|
|
|
</div>
|
2013-08-15 05:13:29 +02:00
|
|
|
<?php endif; ?>
|
2013-07-29 00:55:10 +02:00
|
|
|
|
2013-08-15 05:13:29 +02:00
|
|
|
<header id="masthead" class="site-header" role="banner">
|
2013-09-02 23:25:10 +02:00
|
|
|
<div class="header-main">
|
2013-10-09 21:07:09 +02:00
|
|
|
<h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
|
2013-07-29 00:55:10 +02:00
|
|
|
|
2013-10-25 00:58:48 +02:00
|
|
|
<div class="search-toggle">
|
2015-03-16 19:51:29 +01:00
|
|
|
<a href="#search-container" class="screen-reader-text" aria-expanded="false" aria-controls="search-container"><?php _e( 'Search', 'twentyfourteen' ); ?></a>
|
2013-07-29 00:55:10 +02:00
|
|
|
</div>
|
|
|
|
|
2013-10-25 00:58:48 +02:00
|
|
|
<nav id="primary-navigation" class="site-navigation primary-navigation" role="navigation">
|
2014-03-18 23:37:15 +01:00
|
|
|
<button class="menu-toggle"><?php _e( 'Primary Menu', 'twentyfourteen' ); ?></button>
|
2013-10-25 00:58:48 +02:00
|
|
|
<a class="screen-reader-text skip-link" href="#content"><?php _e( 'Skip to content', 'twentyfourteen' ); ?></a>
|
2017-12-01 00:11:00 +01:00
|
|
|
<?php
|
|
|
|
wp_nav_menu(
|
|
|
|
array(
|
|
|
|
'theme_location' => 'primary',
|
|
|
|
'menu_class' => 'nav-menu',
|
|
|
|
'menu_id' => 'primary-menu',
|
|
|
|
)
|
|
|
|
);
|
2018-08-17 03:51:36 +02:00
|
|
|
?>
|
2013-07-29 00:55:10 +02:00
|
|
|
</nav>
|
|
|
|
</div>
|
|
|
|
|
2013-09-25 01:04:10 +02:00
|
|
|
<div id="search-container" class="search-box-wrapper hide">
|
2013-10-30 15:39:10 +01:00
|
|
|
<div class="search-box">
|
2013-09-02 23:25:10 +02:00
|
|
|
<?php get_search_form(); ?>
|
2013-07-29 00:55:10 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2013-08-15 05:13:29 +02:00
|
|
|
</header><!-- #masthead -->
|
2013-07-29 00:55:10 +02:00
|
|
|
|
2013-08-15 05:13:29 +02:00
|
|
|
<div id="main" class="site-main">
|