Advertisement
Guest User

Untitled

a guest
Oct 13th, 2014
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.23 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 fitcoach
  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 add_action( 'wp_enqueue_scripts', 'fitcoach_scripts' ); ?>
  18. <?php wp_head(); ?>
  19. </head>
  20.  
  21. <body <?php body_class(); ?>>
  22. <div id="page" class="hfeed site">
  23. <a class="skip-link screen-reader-text" href="#content"><?php _e( 'Skip to content', 'fitcoach' ); ?></a>
  24.  
  25. <header id="masthead" class="site-header" role="banner">
  26. <div class="grid side-pad header-overflow">
  27. <?php /* ?><div class="site-branding col-3-12 mobile-col-2-3">
  28. <?php if ( get_theme_mod( 'fitcoach_logo' ) ) : ?>
  29. <div class="site-logo">
  30. <a href='<?php echo esc_url( home_url( '/' ) ); ?>' title='<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>' rel='home'><img src='<?php echo esc_url( get_theme_mod( 'fitcoach_logo' ) ); ?>' width="190" alt='<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>'></a>
  31. </div>
  32. <?php else : ?>
  33. <hgroup>
  34. <h1 class='site-title'><a href='<?php echo esc_url( home_url( '/' ) ); ?>' title='<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>' rel='home'><?php bloginfo( 'name' ); ?></a></h1>
  35. </hgroup>
  36. <?php endif; ?>
  37. </div>
  38. <?php */ ?>
  39. <div class="nav-container col-12-12 mobile-col-3-3">
  40. <nav id="site-navigation" class="main-navigation" role="navigation">
  41. <button class="menu-toggle"><?php _e( 'Menu', 'fitcoach' ); ?></button>
  42. <?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>
  43. </nav><!-- #site-navigation -->
  44. </div><!-- .nav-container -->
  45. <?php /* ?>
  46. <div class="social-container col-1-12 hide-on-mobile">
  47. <?php echo fitcoach_media_icons(); ?>
  48. </div>
  49. <?php */ ?>
  50. </div>
  51. </header><!-- #masthead -->
  52.  
  53. <div id="content" class="site-content">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement