header.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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 bml
  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. <title><?php wp_title( '|', true, 'right' ); ?></title>
  15. <link rel="profile" href="http://gmpg.org/xfn/11">
  16. <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
  17. <?php wp_head(); ?>
  18. </head>
  19. <body <?php body_class(); ?>>
  20. <div id="page" class="hfeed site">
  21. <?php do_action( 'before' ); ?>
  22. <header id="masthead" class="site-header" role="banner">
  23. <div class="site-branding">
  24. <h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
  25. <h2 class="site-description"><?php bloginfo( 'description' ); ?></h2>
  26. </div>
  27. <nav id="site-navigation" class="main-navigation" role="navigation">
  28. <h1 class="menu-toggle"><?php _e( 'Menu', 'bml' ); ?></h1>
  29. <div class="skip-link"><a class="screen-reader-text" href="#content"><?php _e( 'Skip to content', 'bml' ); ?></a></div>
  30. <?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>
  31. </nav><!-- #site-navigation -->
  32. </header><!-- #masthead -->
  33. <div id="content" class="site-content">