Last active
August 29, 2015 14:08
-
-
Save grappler/063d9988d7b388cba2c1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* The header for our theme. | |
* | |
* Displays all of the <head> section and everything up till <div id="content"> | |
* | |
* @package _s | |
*/ | |
?><!DOCTYPE html> | |
<html <?php language_attributes(); ?>> | |
<head> | |
<meta charset="<?php bloginfo( 'charset' ); ?>"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title><?php wp_title( '|', true, 'right' ); ?></title> | |
<link rel="profile" href="http://gmpg.org/xfn/11"> | |
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>"> | |
<?php wp_head(); ?> | |
</head> | |
<body <?php body_class(); ?>> | |
<div id="page" class="hfeed site"> | |
<a class="skip-link screen-reader-text" href="#content"><?php _e( 'Skip to content', '_s' ); ?></a> | |
<header id="masthead" class="site-header" role="banner"> | |
<div class="site-branding"> | |
<?php _s_the_site_branding(); ?> | |
</div> | |
<nav id="site-navigation" class="main-navigation" role="navigation"> | |
<button class="menu-toggle"><?php _e( 'Primary Menu', '_s' ); ?></button> | |
<?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?> | |
</nav><!-- #site-navigation --> | |
</header><!-- #masthead --> | |
<div id="content" class="site-content"> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment