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]>
|
2022-10-07 03:34:11 +02:00
|
|
|
<script src="<?php echo esc_url( 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">
|
2021-08-04 16:24:02 +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
|
|
|
|
Bundled Themes: Remove the "role" attribute on HTML elements with a default landmark role.
With IE11 no longer supported, the primary problem with assistive technology support for native HTML5 elements no longer applies.
This commit removes the `role` attribute from the following HTML5 elements with default landmark roles, per formerly required role attributes and W3C.
Follow-up to [17669], [21261], [23452], [24832], [29892], [38833], [40851], [43842], [46271], [49216].
Props costdev, craigfrancis, joedolson, mukesh27, ryokuhi, sabernhardt.
Fixes #54079.
Built from https://develop.svn.wordpress.org/trunk@52013
git-svn-id: http://core.svn.wordpress.org/trunk@51604 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-11-04 19:18:01 +01:00
|
|
|
<header id="masthead" class="site-header">
|
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">
|
I18N: Mark screen reader strings as such with translator comments.
This aims to provide better context for translators and make it easier to determine that some strings contain hidden accessibility text and are not displayed in the UI.
Props kebbet, mercime, pavelevap, ocean90, swissspidy, Chouby, jipmoors, afercia, desrosj, costdev, audrasjb, SergeyBiryukov.
Fixes #29748.
Built from https://develop.svn.wordpress.org/trunk@55276
git-svn-id: http://core.svn.wordpress.org/trunk@54809 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-02-07 18:10:21 +01:00
|
|
|
<a href="#search-container" class="screen-reader-text" aria-expanded="false" aria-controls="search-container">
|
|
|
|
<?php
|
|
|
|
/* translators: Hidden accessibility text. */
|
|
|
|
_e( 'Search', 'twentyfourteen' );
|
|
|
|
?>
|
|
|
|
</a>
|
2013-07-29 00:55:10 +02:00
|
|
|
</div>
|
|
|
|
|
2021-11-01 22:47:13 +01:00
|
|
|
<nav id="primary-navigation" class="site-navigation primary-navigation">
|
2014-03-18 23:37:15 +01:00
|
|
|
<button class="menu-toggle"><?php _e( 'Primary Menu', 'twentyfourteen' ); ?></button>
|
I18N: Mark screen reader strings as such with translator comments.
This aims to provide better context for translators and make it easier to determine that some strings contain hidden accessibility text and are not displayed in the UI.
Props kebbet, mercime, pavelevap, ocean90, swissspidy, Chouby, jipmoors, afercia, desrosj, costdev, audrasjb, SergeyBiryukov.
Fixes #29748.
Built from https://develop.svn.wordpress.org/trunk@55276
git-svn-id: http://core.svn.wordpress.org/trunk@54809 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-02-07 18:10:21 +01:00
|
|
|
<a class="screen-reader-text skip-link" href="#content">
|
|
|
|
<?php
|
|
|
|
/* translators: Hidden accessibility text. */
|
|
|
|
_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">
|