You are on page 1of 2

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.

or
g/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
<head profile="http://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charse
t=<?php bloginfo('charset'); ?>" />
<title><?php wp_title('&laquo;', true, 'right'); ?> <?php bloginfo('name'); ?></
title>
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/cs
s" media="screen" />
<link type="text/css" media="print" rel="stylesheet" href="<?php bloginfo('templ
ate_url'); ?>/print.css" />
<style type="text/css">
#headimg {
background-image: url(<?php header_image(); ?>);
background-repeat: no-repeat;
}
</style>
<!--[if IE 6]><link type="text/css" media="screen" rel="stylesheet" href="<?php
bloginfo('template_url'); ?>/ie6.css" /><![endif]-->
<!--[if IE 7]><link type="text/css" media="screen" rel="stylesheet" href="<?php
bloginfo('template_url'); ?>/ie7.css" /><![endif]-->
<!--[if IE 8]><link type="text/css" media="screen" rel="stylesheet" href="<?php
bloginfo('template_url'); ?>/ie8.css" /><![endif]-->

<?php
// Check if this is a post or page, if it has a thumbnail, and if it's a big one
if ( is_singular() &&
has_post_thumbnail( $post->ID ) &&
( /* $src, $width, $height */ $image = wp_get_attachment_image_src( get_post_thu
mbnail_id( $post->ID ), 'post-thumbnail') ) &&
$image[1] >= HEADER_IMAGE_WIDTH ) :
// We have a new header image!
echo get_the_post_thumbnail( $post->ID, 'post-thumbnail' );
else : ?>
<?php endif; ?>
<?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 <?php body_class(); ?>>
<div id="bgshadow"></div><div id="wrapper"><div id="container"> <div id=
"top"><div id="rssfeeds">
<a href="<?php bloginfo_rss('rss2_url'); ?>"></a> </div></div><div
id="middle">
<div id="headimg"><div id="shadow"></div>
<div id="blogtitle"><h2 align="right">
<?php bloginfo('name'); ?></h2></div>
<div id="tag">
<?php bloginfo('description'); ?></div><!-- end #tag -->
<!-- end #searchform --></div>
<!-- end #topg -->

<div id="menu">

<?php
if (function_exists('wp_nav_menu')) {
wp_nav_menu(array('container_id' => 'greendrop','theme_location'
=> 'sjc-main-menu', 'fallback_cb' => 'sjc_freshink_menu'));
}
else {
sjc_freshink_menu();
}
?>

</div><!-- end #menug -->

<?php if(function_exists('bcn_display') && !fron


t_page()) { /* Generate the Breadcrumbs NavXT if is installed */ ?>
<div id="breadcrumb"><?php bcn_display(); ?></div>
<?php } ?>

You might also like