5
|
1 |
<?php |
|
2 |
/** |
|
3 |
* The template for displaying the header |
|
4 |
* |
|
5 |
* Displays all of the head element and everything up until the "site-content" div. |
|
6 |
* |
|
7 |
* @package WordPress |
|
8 |
* @subpackage Twenty_Fifteen |
|
9 |
* @since Twenty Fifteen 1.0 |
|
10 |
*/ |
|
11 |
?><!DOCTYPE html> |
|
12 |
<html <?php language_attributes(); ?> class="no-js"> |
|
13 |
<head> |
|
14 |
<meta charset="<?php bloginfo( 'charset' ); ?>"> |
|
15 |
<meta name="viewport" content="width=device-width"> |
|
16 |
<link rel="profile" href="http://gmpg.org/xfn/11"> |
|
17 |
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>"> |
|
18 |
<!--[if lt IE 9]> |
|
19 |
<script src="<?php echo esc_url( get_template_directory_uri() ); ?>/js/html5.js"></script> |
|
20 |
<![endif]--> |
|
21 |
<?php wp_head(); ?> |
|
22 |
</head> |
|
23 |
|
|
24 |
<body <?php body_class(); ?>> |
|
25 |
<div id="page" class="hfeed site"> |
|
26 |
<a class="skip-link screen-reader-text" href="#content"><?php _e( 'Skip to content', 'twentyfifteen' ); ?></a> |
|
27 |
|
|
28 |
<div id="sidebar" class="sidebar"> |
|
29 |
<header id="masthead" class="site-header" role="banner"> |
|
30 |
<div class="site-branding"> |
|
31 |
<?php |
|
32 |
if ( is_front_page() && is_home() ) : ?> |
|
33 |
<h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1> |
|
34 |
<?php else : ?> |
|
35 |
<p class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></p> |
|
36 |
<?php endif; |
|
37 |
|
|
38 |
$description = get_bloginfo( 'description', 'display' ); |
|
39 |
if ( $description || is_customize_preview() ) : ?> |
|
40 |
<p class="site-description"><?php echo $description; ?></p> |
|
41 |
<?php endif; |
|
42 |
?> |
|
43 |
<button class="secondary-toggle"><?php _e( 'Menu and widgets', 'twentyfifteen' ); ?></button> |
|
44 |
</div><!-- .site-branding --> |
|
45 |
</header><!-- .site-header --> |
|
46 |
|
|
47 |
<?php get_sidebar(); ?> |
|
48 |
</div><!-- .sidebar --> |
|
49 |
|
|
50 |
<div id="content" class="site-content"> |