header.php 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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 Sketch
  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 _e( 'Skip to content', 'sketch' ); ?></a>
  21. <header id="masthead" class="site-header" role="banner">
  22. <div class="site-branding">
  23. <?php if ( function_exists( 'jetpack_the_site_logo' ) ) jetpack_the_site_logo(); ?>
  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. <button class="menu-toggle"><?php _e( 'Menu', 'sketch' ); ?></button>
  29. <?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>
  30. </nav><!-- #site-navigation -->
  31. </header><!-- #masthead -->
  32. <div id="content" class="site-content">
  33. <?php if ( get_header_image() ) : ?>
  34. <?php if ( is_page_template( 'portfolio-page.php' ) && ! sketch_has_featured_posts( 1 ) || ! is_page_template( 'portfolio-page.php' ) ) : ?>
  35. <a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home">
  36. <img class="custom-header" src="<?php header_image(); ?>" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="">
  37. </a>
  38. <?php endif; ?>
  39. <?php endif; // End header image check. ?>