The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
< ? php
/**
2013-09-20 21:24:09 +02:00
* The Header template for our theme
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
*
* Displays all of the < head > section and everything up till < div id = " main " >
*
* @ package WordPress
* @ subpackage Twenty_Twelve
* @ since Twenty Twelve 1.0
*/
?> <!DOCTYPE html>
2012-10-12 00:07:06 +02:00
<!-- [ if IE 7 ] >
< html class = " ie ie7 " < ? php language_attributes (); ?> >
<! [ endif ] -->
<!-- [ if IE 8 ] >
< html class = " ie ie8 " < ? php language_attributes (); ?> >
2012-08-09 20:42:36 +02:00
<! [ endif ] -->
2014-05-07 06:27:15 +02:00
<!-- [ if ! ( IE 7 ) & ! ( IE 8 )] ><!-->
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
< html < ? php language_attributes (); ?> >
2012-08-08 20:03:59 +02:00
<!--<! [ endif ] -->
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
< head >
< meta charset = " <?php bloginfo( 'charset' ); ?> " />
2012-08-15 18:05:13 +02:00
< meta name = " viewport " content = " width=device-width " />
2012-07-18 19:07:15 +02: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' ) ); ?> " >
2012-09-27 09:30:27 +02:00
< ? php // Loads HTML5 JavaScript file to add support for HTML5 elements in older IE versions. ?>
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02: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 " type = " text/javascript " ></ script >
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
<! [ endif ] -->
< ? 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 (); ?>
2012-08-02 21:12:11 +02: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 " >
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
< hgroup >
< h1 class = " site-title " >< a href = " <?php echo esc_url( home_url( '/' ) ); ?> " title = " <?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?> " rel = " home " >< ? php bloginfo ( 'name' ); ?> </a></h1>
< h2 class = " site-description " >< ? php bloginfo ( 'description' ); ?> </h2>
</ hgroup >
2021-11-01 22:47:13 +01:00
< nav id = " site-navigation " class = " main-navigation " >
2014-07-11 19:47:14 +02:00
< button class = " menu-toggle " >< ? php _e ( 'Menu' , 'twentytwelve' ); ?> </button>
2012-10-11 19:17:55 +02:00
< a class = " assistive-text " href = " #content " title = " <?php esc_attr_e( 'Skip to content', 'twentytwelve' ); ?> " >< ? php _e ( 'Skip to content' , 'twentytwelve' ); ?> </a>
2017-12-01 00:11:00 +01:00
< ? php
wp_nav_menu (
array (
'theme_location' => 'primary' ,
'menu_class' => 'nav-menu' ,
)
);
2018-08-17 03:51:36 +02:00
?>
2012-08-25 19:16:56 +02:00
</ nav ><!-- #site-navigation -->
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
2013-10-17 05:30:09 +02:00
< ? php if ( get_header_image () ) : ?>
2015-01-21 22:06:23 +01:00
< a href = " <?php echo esc_url( home_url( '/' ) ); ?> " >< img src = " <?php header_image(); ?> " class = " header-image " width = " <?php echo esc_attr( get_custom_header()->width ); ?> " height = " <?php echo esc_attr( get_custom_header()->height ); ?> " alt = " <?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?> " /></ a >
The Twenty Twelve for WordPress.
props drewstrojny, lancewillett.
also props corvannoorloos, jeffsebring, kobenland, iandstewart, mfields,
mtdesign, op12no2, philiparthurmoore, sixhours, mamaduka.
see #19978.
git-svn-id: http://core.svn.wordpress.org/trunk@21261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2012-07-12 06:20:46 +02:00
< ? php endif ; ?>
</ header ><!-- #masthead -->
2017-12-01 00:11:00 +01:00
< div id = " main " class = " wrapper " >