header.php 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. /**
  3. * The Header for our theme.
  4. *
  5. * Displays all of the <head> section and everything up till <div id="main">
  6. *
  7. * @package Spun
  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" />
  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="header-wrapper">
  24. <a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">
  25. <img src="<?php echo get_template_directory_uri(); ?>/img/logo<?php echo "0" . rand(1 , 8) ?>.png" width="auto" height="auto" alt="" />
  26. </a>
  27. <div class="site-branding">
  28. <h1 class="site-title"><a href="<?php echo home_url( '/' ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
  29. <h2 class="site-description"><?php bloginfo( 'description' ); ?></h2>
  30. </div>
  31. </div>
  32. <nav role="navigation" class="site-navigation main-navigation">
  33. <h1 class="screen-reader-text"><?php _e( 'Menu', 'spun' ); ?></h1>
  34. <div class="screen-reader-text skip-link"><a href="#content" title="<?php esc_attr_e( 'Skip to content', 'spun' ); ?>"><?php _e( 'Skip to content', 'spun' ); ?></a></div>
  35. <?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>
  36. </nav><!-- .site-navigation .main-navigation -->
  37. </header><!-- #masthead .site-header -->
  38. <div id="main" class="site-main">