<?php
/**
* Header Template
*
* Here we setup all logic and HTML that is required for the header section of all screens.
*
*/
global $woo_options, $woocommerce;
?>
<!DOCTYPE html>
<!–[if lt IE 7 ]> <html <?php language_attributes(); ?> class=”no-js ie6″> <![endif]–>
<!–[if IE 7 ]> <html <?php language_attributes(); ?> class=”no-js ie7″> <![endif]–>
<!–[if IE 8 ]> <html <?php language_attributes(); ?> class=”no-js ie8″> <![endif]–>
<!–[if IE 9 ]> <html <?php language_attributes(); ?> class=”no-js ie9″> <![endif]–>
<!–[if (gt IE 9)|!(IE)]><!–> <html <?php language_attributes(); ?> class=”no-js”> <!–<![endif]–>
<head profile=”https://gmpg.org/xfn/11″>
<script type=”text/javascript”>
var _gaq = _gaq || [];
_gaq.push([‘_setAccount’, ‘UA-36919862-1’]);
_gaq.push([‘_trackPageview’]);
(function() {
var ga = document.createElement(‘script’); ga.type = ‘text/javascript’; ga.async = true;
ga.src = (‘https:’ == document.location.protocol ? ‘https://ssl’ : ‘https://www’) + ‘.google-analytics.com/ga.js’;
var s = document.getElementsByTagName(‘script’)[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<title><?php woo_title(); ?></title>
<?php woo_meta(); ?>
<!– CSS –>
<!– The main stylesheet –>
<link rel=”stylesheet” href=”<?php echo get_stylesheet_directory_uri(); ?>/style.css”>
<!– /CSS –>
<link rel=”alternate” type=”application/rss+xml” title=”RSS 2.0″ href=”<?php $GLOBALS[‘feedurl’] = get_option(‘woo_feed_url’); if ( !empty($feedurl) ) { echo $feedurl; } else { echo get_bloginfo_rss(‘rss2_url’); } ?>” />
<link rel=”pingback” href=”<?php bloginfo(‘pingback_url’); ?>” />
<?php wp_head(); ?>
<?php woo_head(); ?>
</head>