header.php 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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 Intergalactic 2
  8. */
  9. $header = get_header_image();
  10. ?><!DOCTYPE html>
  11. <html <?php language_attributes(); ?>>
  12. <head>
  13. <meta charset="<?php bloginfo( 'charset' ); ?>">
  14. <meta name="viewport" content="width=device-width, initial-scale=1">
  15. <link rel="profile" href="http://gmpg.org/xfn/11">
  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', 'intergalactic-2' ); ?></a>
  21. <header id="masthead" class="site-header" role="banner">
  22. <?php if ( ! empty( $header ) && ! is_singular() ) { ?>
  23. <div class="header-background" style="background-image:url(<?php echo esc_url( $header ); ?>)"></div>
  24. <?php } ?>
  25. <div class="site-branding">
  26. <?php the_custom_logo(); ?>
  27. <?php
  28. if ( is_front_page() && is_home() ) : ?>
  29. <h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
  30. <?php else : ?>
  31. <p class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></p>
  32. <?php
  33. endif;
  34. $description = get_bloginfo( 'description', 'display' );
  35. if ( $description || is_customize_preview() ) : ?>
  36. <p class="site-description"><?php echo $description; /* WPCS: xss ok. */ ?></p>
  37. <?php
  38. endif; ?>
  39. </div>
  40. <button class="menu-toggle x">
  41. <span class="lines"></span>
  42. <?php esc_html_e( 'Menu', 'intergalactic-2' ); ?>
  43. </button>
  44. </header><!-- #masthead -->
  45. <div class="slide-menu">
  46. <nav id="site-navigation" class="main-navigation" role="navigation">
  47. <?php wp_nav_menu( array( 'theme_location' => 'menu-1' ) ); ?>
  48. </nav><!-- #site-navigation -->
  49. <?php intergalactic_2_social_menu(); ?>
  50. <?php get_sidebar(); ?>
  51. </div>
  52. <div id="content" class="site-content">