header.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?php
  2. /**
  3. * The header for our theme.
  4. *
  5. * Displays all of the <head> section and everything up till <div id="content">
  6. *
  7. * @package Dyad
  8. */
  9. ?><!DOCTYPE html>
  10. <html <?php language_attributes(); ?>>
  11. <head>
  12. <meta charset="<?php bloginfo( 'charset' ); ?>">
  13. <meta name="viewport" content="width=device-width, initial-scale=1">
  14. <link rel="profile" href="http://gmpg.org/xfn/11">
  15. <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
  16. <?php wp_head(); ?>
  17. </head>
  18. <body <?php body_class(); ?>>
  19. <div id="page" class="hfeed site">
  20. <a class="skip-link screen-reader-text" href="#content"><?php esc_html_e( 'Skip to content', 'dyad-2' ); ?></a>
  21. <header id="masthead" class="site-header" role="banner">
  22. <div class="site-branding">
  23. <?php dyad_2_the_custom_logo(); ?>
  24. <h1 class="site-title">
  25. <a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home">
  26. <?php bloginfo( 'name' ); ?>
  27. </a>
  28. </h1>
  29. <p class="site-description"><?php bloginfo( 'description' ); ?></p>
  30. </div><!-- .site-branding -->
  31. <nav id="site-navigation" class="main-navigation" role="navigation">
  32. <button class="menu-toggle" aria-controls="primary-menu" aria-expanded="false"><?php esc_html_e( 'Menu', 'dyad-2' ); ?></button>
  33. <?php wp_nav_menu( array(
  34. 'theme_location' => 'menu-1',
  35. 'menu_id' => 'primary-menu',
  36. 'container' => 'div',
  37. 'container_class' => 'primary-menu',
  38. ) ); ?>
  39. </nav>
  40. </header><!-- #masthead -->
  41. <div class="site-inner">
  42. <?php if ( is_home() || is_front_page() || ( is_single() && 'image' == get_post_format() && dyad_2_jetpack_featured_image_display() ) ) : ?>
  43. <div class="featured-content">
  44. <?php get_template_part( 'template-parts/loop', 'banner' ); ?>
  45. </div>
  46. <?php endif; ?>
  47. <div id="content" class="site-content">