header.php 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <?php
  2. /**
  3. * The header for our theme
  4. *
  5. * This is the template that displays all of the <head> section and everything up until <div id="content">
  6. *
  7. * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
  8. *
  9. * @package WordPress
  10. * @subpackage Stratford
  11. * @since 1.0.0
  12. */
  13. ?><!doctype html>
  14. <html <?php language_attributes(); ?>>
  15. <head>
  16. <meta charset="<?php bloginfo( 'charset' ); ?>" />
  17. <meta name="viewport" content="width=device-width, initial-scale=1" />
  18. <link rel="profile" href="https://gmpg.org/xfn/11" />
  19. <?php wp_head(); ?>
  20. </head>
  21. <body <?php body_class(); ?>>
  22. <div id="page" class="site">
  23. <a class="skip-link screen-reader-text" href="#content"><?php _e( 'Skip to content', 'varia' ); ?></a>
  24. <header id="masthead" class="site-header alignfull">
  25. <div class="site-header-wrapper">
  26. <?php get_template_part( 'template-parts/header/site', 'branding' ); ?>
  27. <?php if ( has_nav_menu( 'menu-1' ) ) : ?>
  28. <div id="site-menu" class="site-menu">
  29. <nav id="site-navigation" class="main-navigation" aria-label="<?php esc_attr_e( 'Main Navigation', 'varia' ); ?>">
  30. <input type="checkbox" role="button" aria-haspopup="true" id="toggle" class="hide-visually">
  31. <label for="toggle" id="toggle-menu" class="button">
  32. <?php _e( 'Menu', 'varia' ); ?>
  33. <span class="dropdown-icon open">+</span>
  34. <span class="dropdown-icon close">&times;</span>
  35. <span class="hide-visually expanded-text"><?php _e( 'expanded', 'varia' ); ?></span>
  36. <span class="hide-visually collapsed-text"><?php _e( 'collapsed', 'varia' ); ?></span>
  37. </label>
  38. <?php
  39. wp_nav_menu(
  40. array(
  41. 'theme_location' => 'menu-1',
  42. 'menu_class' => 'main-menu',
  43. 'items_wrap' => '<ul id="%1$s" class="%2$s" aria-label="submenu">%3$s</ul>',
  44. )
  45. );
  46. ?>
  47. </nav><!-- #site-navigation -->
  48. </div><!-- .site-menu -->
  49. <?php endif; ?>
  50. </div>
  51. </header><!-- #masthead -->
  52. <div id="content" class="site-content">