1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
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(); ?>
|