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 twentyfifteen_the_custom_logo(); |
|
33 |
|
34 if ( is_front_page() && is_home() ) : ?> |
|
35 <h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1> |
|
36 <?php else : ?> |
|
37 <p class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></p> |
|
38 <?php endif; |
|
39 |
|
40 $description = get_bloginfo( 'description', 'display' ); |
|
41 if ( $description || is_customize_preview() ) : ?> |
|
42 <p class="site-description"><?php echo $description; ?></p> |
|
43 <?php endif; |
|
44 ?> |
|
45 <button class="secondary-toggle"><?php _e( 'Menu and widgets', 'twentyfifteen' ); ?></button> |
|
46 </div><!-- .site-branding --> |
|
47 </header><!-- .site-header --> |
|
48 |
|
49 <?php get_sidebar(); ?> |
|
50 </div><!-- .sidebar --> |
|
51 |
|
52 <div id="content" class="site-content"> |
|