2013-02-19 00:08:56 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2013-09-20 21:34:10 +02:00
|
|
|
* The Header template for our theme
|
2013-02-19 00:08:56 +01:00
|
|
|
*
|
|
|
|
* Displays all of the <head> section and everything up till <div id="main">
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Twenty_Thirteen
|
|
|
|
* @since Twenty Thirteen 1.0
|
|
|
|
*/
|
|
|
|
?><!DOCTYPE html>
|
2013-05-03 20:22:57 +02:00
|
|
|
<html <?php language_attributes(); ?>>
|
2013-02-19 00:08:56 +01:00
|
|
|
<head>
|
2013-06-06 02:29:07 +02:00
|
|
|
<meta charset="<?php bloginfo( 'charset' ); ?>">
|
|
|
|
<meta name="viewport" content="width=device-width">
|
2013-02-19 00:08:56 +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-02-19 00:08:56 +01:00
|
|
|
<?php wp_head(); ?>
|
|
|
|
</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-02-19 00:08:56 +01:00
|
|
|
<div id="page" class="hfeed site">
|
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">
|
2022-12-01 22:56:11 +01:00
|
|
|
<a class="home-link" href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home">
|
2013-04-23 19:55:55 +02:00
|
|
|
<h1 class="site-title"><?php bloginfo( 'name' ); ?></h1>
|
|
|
|
<h2 class="site-description"><?php bloginfo( 'description' ); ?></h2>
|
2013-02-26 05:50:09 +01:00
|
|
|
</a>
|
2013-02-19 00:08:56 +01:00
|
|
|
|
|
|
|
<div id="navbar" class="navbar">
|
2021-11-01 22:47:13 +01:00
|
|
|
<nav id="site-navigation" class="navigation main-navigation">
|
2014-07-16 01:10:15 +02:00
|
|
|
<button class="menu-toggle"><?php _e( 'Menu', 'twentythirteen' ); ?></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', 'twentythirteen' );
|
|
|
|
?>
|
|
|
|
</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-03-26 21:34:37 +01:00
|
|
|
<?php get_search_form(); ?>
|
2013-02-19 00:08:56 +01:00
|
|
|
</nav><!-- #site-navigation -->
|
|
|
|
</div><!-- #navbar -->
|
|
|
|
</header><!-- #masthead -->
|
|
|
|
|
|
|
|
<div id="main" class="site-main">
|