Advertisement
dreamling

psc-repeating-header

Sep 11th, 2014
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.19 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 Pink Sugar Castle
  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 wp_enqueue_script("jquery"); ?>
  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', 'uw-m-dcs' ); ?></a>
  24.  
  25.     <header id="masthead" class="site-header container=12" role="banner">
  26.         <div class="header-content">
  27.  
  28.                     <div class="more-info">
  29.     <div class="social">
  30.         <ul>
  31.             <li><a href=""><i class="dashicons dashicons-facebook"></i></a></li>
  32.             <li><a href=""><i class="dashicons icon-linkedin-squared"></i></a></li>
  33.             <li><a href=""><i class="dashicons dashicons-twitter"></i></a></li>
  34.           <li><a href=""><i class="dashicons dashicons-googleplus"></i></a></li>
  35.             </ul>
  36.     </div>
  37.     <div class="links"><a href="">Zane</a><br/>
  38.     <a href="">About Us</a></div>
  39.     <?php get_search_form(); ?>
  40. </div>
  41.  
  42.  
  43.         <div class="site-branding">
  44.         <div class="site-logo"></div>
  45.             <h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
  46.             <h2 class="site-description"><?php bloginfo( 'description' ); ?></h2>
  47. <h3 class="site-byline">Magic and Mystery to keep your life moving.</h3>
  48. </div>
  49.         </div>
  50. <?php wp_reset_postdata(); ?>
  51. <div class="row">
  52.         <nav id="site-navigation" class="main-navigation" role="navigation">
  53.             <button class="menu-toggle"><?php _e( 'Primary Menu', 'uw-m-dcs' ); ?></button>
  54.             <?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>
  55.         </nav><!-- #site-navigation -->
  56. </div>
  57.     </header><!-- #masthead -->
  58.  
  59.  
  60. <?php if ( !is_front_page() ) { ?>
  61.     <div id="content" class="site-content"> <?php }
  62. else { ?> <div id="content" class="front-site-content"><?php };?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement