Advertisement
Guest User

header.php

a guest
Mar 11th, 2012
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.38 KB | None | 0 0
  1. <!doctype html>
  2. <!--[if lt IE 7]> <html class="no-js ie6 oldie" <?php language_attributes(); ?>> <![endif]-->
  3. <!--[if IE 7]>    <html class="no-js ie7 oldie" <?php language_attributes(); ?>> <![endif]-->
  4. <!--[if IE 8]>    <html class="no-js ie8 oldie" <?php language_attributes(); ?>> <![endif]-->
  5. <!--[if IE 9]>    <html class="no-js ie9" <?php language_attributes(); ?>> <![endif]-->
  6. <!--[if gt IE 9]><!--> <html class="no-js" <?php language_attributes(); ?>> <!--<![endif]-->
  7.  
  8. <head>
  9.  
  10.     <meta charset="<?php bloginfo( 'charset' ); ?>" />
  11.  
  12.     <title><?php wp_title(''); ?></title>
  13.  
  14.     <?php wp_head(); ?>
  15.  
  16. </head>
  17.  
  18. <body <?php body_class(); ?>>
  19.  
  20. <section id="wrap">
  21.  
  22.     <header id="header">
  23.  
  24.         <section class="wrap">
  25.  
  26.             <?php $title_tag = ( is_home() || is_front_page() ) ? 'h1' : 'span'; ?>
  27.             <<?php echo $title_tag; ?> id="title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) );?>" rel="home"><?php bloginfo( 'name' ); ?></a></<?php echo $title_tag; ?>>
  28.  
  29.             <span id="availability">We're currently taking on projects for <strong>April / May</strong></span>
  30.  
  31.             <nav id="nav">
  32.                 <?php wp_nav_menu( array ( 'container' => '', 'theme_location' => 'primary_navigation' ) ); ?>
  33.             </nav><!-- /#nav -->
  34.  
  35.         </section><!-- /.wrap -->
  36.    
  37.     </header><!-- /#header -->
  38.  
  39.     <section id="main">
  40.  
  41.         <section class="wrap">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement