Advertisement
Guest User

Untitled

a guest
Nov 28th, 2015
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  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 Maker
  8. */
  9.  
  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.  
  19. <body <?php body_class(); ?>>
  20.  
  21. <div id="page" class="hfeed site">
  22. <a class="skip-link screen-reader-text" href="#content"><?php esc_html_e( 'Skip to content', 'maker' ); ?></a>
  23.  
  24. <header id="masthead" class="site-header" role="banner">
  25. <div class="wrap">
  26. <div class="site-branding">
  27. <?php maker_site_logo(); ?>
  28. <?php maker_site_title(); ?>
  29. <?php maker_site_description(); ?>
  30. </div><!-- .site-branding -->
  31.  
  32. <button id="site-navigation-toggle" class="menu-toggle" >
  33. <span class="menu-toggle-icon"></span>
  34. <?php esc_html_e( 'Primary Menu', 'maker' ); ?>
  35. </button><!-- #site-navigation-menu-toggle -->
  36.  
  37. <nav id="site-navigation" class="main-navigation" role="navigation">
  38. <?php wp_nav_menu( array( 'theme_location' => 'primary', 'menu_id' => 'primary-menu' ) ); ?>
  39. </nav><!-- #site-navigation -->
  40. </div><!-- .column -->
  41. </header><!-- #masthead -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement