summaryrefslogtreecommitdiff
path: root/header.php
diff options
context:
space:
mode:
Diffstat (limited to 'header.php')
-rw-r--r--header.php88
1 files changed, 88 insertions, 0 deletions
diff --git a/header.php b/header.php
new file mode 100644
index 0000000..1eb8f55
--- /dev/null
+++ b/header.php
@@ -0,0 +1,88 @@
+<?php
+/**
+ * The Header for our theme.
+ *
+ * Displays all of the <head> section and everything up till <div id="main">
+ *
+ * @package NorthStar
+ * @subpackage lts-theme
+ * @since 1.0
+ */
+
+echo '<?xml version="1.0" encoding="utf-8"?>'."\n";
+?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
+ "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?> >
+<head>
+ <title><?php
+ /*
+ * Print the <title> tag based on what is being viewed.
+ */
+ global $page, $paged;
+
+ wp_title( '|', true, 'right' );
+
+ // Add the blog name.
+ bloginfo( 'name' );
+
+ // Add the blog description for the home/front page.
+ $site_description = get_bloginfo( 'description', 'display' );
+ if ( $site_description && ( is_home() || is_front_page() ) )
+ echo " | $site_description";
+
+ // Add a page number if necessary:
+ if ( $paged >= 2 || $page >= 2 )
+ echo ' | ' . sprintf( __( 'Page %s', 'twentyten' ), max( $paged, $page ) );
+
+ ?></title>
+ <link href="<?php bloginfo( 'stylesheet_url' ); ?>" rel="stylesheet" type="text/css" media="all" />
+ <link href="<?php bloginfo( 'template_url' ); ?>/widgets.css" rel="stylesheet" type="text/css" media="all" />
+ <!--[if !(IE)]><!-->
+ <link href="<?php bloginfo( 'template_url' ); ?>/hacks.css" rel="stylesheet" type="text/css" media="all" />
+ <!--<![endif]-->
+ <!--[if IE]><link href="<?php bloginfo( 'template_url' ); ?>/ie.css" rel="stylesheet" type="text/css" media="all" /><![endif]-->
+ <meta http-equiv="X-UA-Compatible" content="IE=edge" >
+ <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
+<?php
+ /* We add some JavaScript to pages with the comment form
+ * to support sites with threaded comments (when in use).
+ */
+ if ( is_singular() && get_option( 'thread_comments' ) )
+ wp_enqueue_script( 'comment-reply' );
+
+ /* Always have wp_head() just before the closing </head>
+ * tag of your theme, or you will break many plugins, which
+ * generally use this hook to add elements to <head> such
+ * as styles, scripts, and meta tags.
+ */
+ wp_head();
+?>
+</head>
+
+<body>
+<!--[if IE]><div class="ie">You are using Microsoft Internet Explorer. The site will still work, just not as well, due to Internet Explorer's poor CSS support.</div><![endif]-->
+
+<?php global $head; $head=1; ?>
+ <?php echo "<h$head>"; ?><a href="<?php echo home_url('/'); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><img src="<?php echo bloginfo('template_url'); ?>/images/northstar.png" alt="<?php bloginfo('name'); ?>" /></a><?php echo "</h$head>"; $head++; ?>
+ <?php /* <div id="site-description"><?php bloginfo( 'description' ); ?></div> */ ?>
+ <div class="infobar">
+ <span class="volume">Volume 33</span>
+ <span class="issue">Issue 10</span>
+ <span class="date"><?php echo date("l, F j, Y"); ?></span>
+ </div>
+ <div class="nav"><a class="nocss" id="navigation"></a>
+ <ul>
+ <?php
+ ob_start();
+ if ( ! dynamic_sidebar( 'BannerNav' ) ) {
+ echo '<li>';
+ echo wp_nav_menu( array( 'container_class' => 'menu-header', 'theme_location' => 'primary', 'echo' => false ) );
+ echo '</li>';
+ }
+ $nav = ob_get_contents();
+ ob_end_clean();
+ echo preg_replace("/>([\\s\n]+)</",'><!--$1--><', $nav);
+ ?>
+ </ul>
+ </div>
+<?php get_sidebar(); ?>