You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

100 lines
4.1 KiB

  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_Sixteen
  9. * @since Twenty Sixteen 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, initial-scale=1">
  16. <link rel="profile" href="http://gmpg.org/xfn/11">
  17. <?php if ( is_singular() && pings_open( get_queried_object() ) ) : ?>
  18. <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
  19. <?php endif; ?>
  20. <?php wp_head(); ?>
  21. </head>
  22. <body <?php body_class(); ?>>
  23. <div id="page" class="site">
  24. <div class="site-inner">
  25. <a class="skip-link screen-reader-text" href="#content"><?php _e( 'Skip to content', 'twentysixteen' ); ?></a>
  26. <header id="masthead" class="site-header" role="banner">
  27. <div class="site-header-main">
  28. <div class="site-branding">
  29. <?php twentysixteen_the_custom_logo(); ?>
  30. <?php if ( is_front_page() && is_home() ) : ?>
  31. <h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
  32. <?php else : ?>
  33. <p class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></p>
  34. <?php endif;
  35. $description = get_bloginfo( 'description', 'display' );
  36. if ( $description || is_customize_preview() ) : ?>
  37. <p class="site-description"><?php echo $description; ?></p>
  38. <?php endif; ?>
  39. </div><!-- .site-branding -->
  40. <?php if ( has_nav_menu( 'primary' ) || has_nav_menu( 'social' ) ) : ?>
  41. <button id="menu-toggle" class="menu-toggle"><?php _e( 'Menu', 'twentysixteen' ); ?></button>
  42. <div id="site-header-menu" class="site-header-menu">
  43. <?php if ( has_nav_menu( 'primary' ) ) : ?>
  44. <nav id="site-navigation" class="main-navigation" role="navigation" aria-label="<?php esc_attr_e( 'Primary Menu', 'twentysixteen' ); ?>">
  45. <?php
  46. wp_nav_menu( array(
  47. 'theme_location' => 'primary',
  48. 'menu_class' => 'primary-menu',
  49. ) );
  50. ?>
  51. </nav><!-- .main-navigation -->
  52. <?php endif; ?>
  53. <?php if ( has_nav_menu( 'social' ) ) : ?>
  54. <nav id="social-navigation" class="social-navigation" role="navigation" aria-label="<?php esc_attr_e( 'Social Links Menu', 'twentysixteen' ); ?>">
  55. <?php
  56. wp_nav_menu( array(
  57. 'theme_location' => 'social',
  58. 'menu_class' => 'social-links-menu',
  59. 'depth' => 1,
  60. 'link_before' => '<span class="screen-reader-text">',
  61. 'link_after' => '</span>',
  62. ) );
  63. ?>
  64. </nav><!-- .social-navigation -->
  65. <?php endif; ?>
  66. </div><!-- .site-header-menu -->
  67. <?php endif; ?>
  68. </div><!-- .site-header-main -->
  69. <?php if ( get_header_image() ) : ?>
  70. <?php
  71. /**
  72. * Filter the default twentysixteen custom header sizes attribute.
  73. *
  74. * @since Twenty Sixteen 1.0
  75. *
  76. * @param string $custom_header_sizes sizes attribute
  77. * for Custom Header. Default '(max-width: 709px) 85vw,
  78. * (max-width: 909px) 81vw, (max-width: 1362px) 88vw, 1200px'.
  79. */
  80. $custom_header_sizes = apply_filters( 'twentysixteen_custom_header_sizes', '(max-width: 709px) 85vw, (max-width: 909px) 81vw, (max-width: 1362px) 88vw, 1200px' );
  81. ?>
  82. <div class="header-image">
  83. <a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home">
  84. <img src="<?php header_image(); ?>" srcset="<?php echo esc_attr( wp_get_attachment_image_srcset( get_custom_header()->attachment_id ) ); ?>" sizes="<?php echo esc_attr( $custom_header_sizes ); ?>" width="<?php echo esc_attr( get_custom_header()->width ); ?>" height="<?php echo esc_attr( get_custom_header()->height ); ?>" alt="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>">
  85. </a>
  86. </div><!-- .header-image -->
  87. <?php endif; // End header image check. ?>
  88. </header><!-- .site-header -->
  89. <div id="content" class="site-content">