This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
_s/header.php

38 lines
1.3 KiB
PHP
Raw Normal View History

2012-01-07 03:25:13 +00:00
<?php
/**
2014-06-24 23:04:59 +00:00
* The header for our theme.
2012-01-07 03:25:13 +00:00
*
2013-09-14 10:29:53 +00:00
* Displays all of the <head> section and everything up till <div id="content">
2012-01-07 03:25:13 +00:00
*
* @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' ); ?>">
2012-01-07 03:25:13 +00:00
<?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>
2014-02-10 20:19:41 +00:00
<header id="masthead" class="site-header" role="banner">
<div class="site-branding">
<h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
<h2 class="site-description"><?php bloginfo( 'description' ); ?></h2>
</div>
2012-01-07 03:25:13 +00:00
<nav id="site-navigation" class="main-navigation" role="navigation">
<button class="menu-toggle"><?php _e( 'Primary Menu', '_s' ); ?></button>
2012-01-07 03:25:13 +00:00
<?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>
</nav><!-- #site-navigation -->
</header><!-- #masthead -->
2012-01-07 03:25:13 +00:00
<div id="content" class="site-content">