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>
|
|
|
|
<!--[if IE 7]>
|
2013-05-03 20:22:57 +02:00
|
|
|
<html class="ie ie7" <?php language_attributes(); ?>>
|
2013-02-19 00:08:56 +01:00
|
|
|
<![endif]-->
|
|
|
|
<!--[if IE 8]>
|
2013-05-03 20:22:57 +02:00
|
|
|
<html class="ie ie8" <?php language_attributes(); ?>>
|
2013-02-19 00:08:56 +01:00
|
|
|
<![endif]-->
|
2014-05-07 06:27:15 +02:00
|
|
|
<!--[if !(IE 7) & !(IE 8)]><!-->
|
2013-05-03 20:22:57 +02:00
|
|
|
<html <?php language_attributes(); ?>>
|
2013-02-19 00:08:56 +01:00
|
|
|
<!--<![endif]-->
|
|
|
|
<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
|
|
|
<!--[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-02-19 00:08:56 +01: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(); ?>
|
2013-02-19 00:08:56 +01:00
|
|
|
<div id="page" class="hfeed site">
|
|
|
|
<header id="masthead" class="site-header" role="banner">
|
2013-04-23 19:55:55 +02:00
|
|
|
<a class="home-link" href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">
|
|
|
|
<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>
|
2013-03-12 18:44:27 +01:00
|
|
|
<a class="screen-reader-text skip-link" href="#content" title="<?php esc_attr_e( 'Skip to content', 'twentythirteen' ); ?>"><?php _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">
|