File: /home/mmickelson/martyknows.com/wp-content/themes/mixfolio/header.php
<?php global $mixfolio_options;
/**
* The Header for our theme.
*
* Displays all of the <head> section and everything up till <div id="main">
*
* @package Mixfolio
*/
?><!DOCTYPE html>
<!--[if IE 8]>
<html id="ie8" <?php language_attributes(); ?>>
<![endif]-->
<!--[if !(IE 8)]><!-->
<html <?php language_attributes(); ?>>
<!--<![endif]-->
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<meta name="viewport" content="initial-scale=1.0, width=device-width" />
<title><?php wp_title( '|', true, 'right' ); ?></title>
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
<!--[if lt IE 9]>
<script src="<?php echo get_template_directory_uri(); ?>/js/html5.js" type="text/javascript"></script>
<![endif]-->
<?php wp_head(); ?>
</head>
<body lang="en" <?php body_class(); ?>>
<div id="page" class="hfeed">
<header id="branding" role="banner" data-dropdown="dropdown">
<div id="branding-inner">
<div class="container">
<hgroup>
<h1 id="site-title">
<a href="<?php echo home_url( '/' ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">
<?php if ( isset( $mixfolio_options[ 'mixfolio_logo' ] ) && '' != $mixfolio_options[ 'mixfolio_logo' ] ) { ?>
<img class="sitetitle" id="logo-image-home" src="<?php echo $mixfolio_options[ 'mixfolio_logo' ]; ?>" alt="<?php bloginfo( 'name' ); ?>" />
<?php } else {
bloginfo( 'name' );
} ?>
</a>
</h1><!-- #site-title -->
<?php if ( '' != get_bloginfo( 'description' ) ) : ?>
<h2 id="site-description">
<?php bloginfo( 'description' ); ?>
</h2><!-- #site-description -->
<?php endif; ?>
</hgroup>
<nav role="navigation" class="nav site-navigation main-navigation">
<h1 class="assistive-text"><?php _e( 'Menu', 'mixfolio' ); ?></h1>
<div class="assistive-text skip-link"><a href="#content" title="<?php esc_attr_e( 'Skip to content', '_s' ); ?>"><?php _e( 'Skip to content', 'mixfolio' ); ?></a></div>
<?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>
</nav><!-- .nav .site-navigation .main-navigation -->
<div class="hide-on-phones">
<?php get_search_form(); ?>
</div><!-- .hide-on-phones -->
</div><!-- .container -->
</div><!-- #branding-inner -->
</header><!-- #branding -->
<div class="main-outer">
<div id="main" class="row">
<div class="twelve columns">
<?php $header_image = get_header_image();
if ( ! empty( $header_image ) ) : ?>
<div class="header-image">
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home">
<img src="<?php header_image(); ?>" width="<?php echo get_custom_header()->width; ?>" alt="" />
</a>
</div><!-- .header-image -->
<?php endif; // if ( ! empty( $header_image ) ); ?>