1 <?php 2 /** 3 * The Header for our theme. 4 * 5 * Displays all of the <head> section and everything up till <div id="main"> 6 * 7 * @package WordPress 8 * @subpackage Twenty_Ten 9 * @since Twenty Ten 1.0 10 */ 11 ?><!DOCTYPE html> 12 <html <?php language_attributes(); ?>> 13 <head> 14 <meta charset="<?php bloginfo( 'charset' ); ?>" /> 15 <title><?php 16 /* 17 * Print the <title> tag based on what is being viewed. 18 */ 19 global $page, $paged; 20 21 wp_title( '|', true, 'right' ); 22 23 // Add the blog name. 24 bloginfo( 'name' ); 25 26 // Add the blog description for the home/front page. 27 $site_description = get_bloginfo( 'description', 'display' ); 28 if ( $site_description && ( is_home() || is_front_page() ) ) 29 echo " | $site_description"; 30 31 // Add a page number if necessary: 32 if ( $paged >= 2 || $page >= 2 ) 33 echo ' | ' . sprintf( __( 'Page %s', 'twentyten' ), max( $paged, $page ) ); 34 35 ?></title> 36 <link rel="profile" href="http://gmpg.org/xfn/11" /> 37 38 <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" /> 39 <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" /> 40 <?php 41 /* We add some JavaScript to pages with the comment form 42 * to support sites with threaded comments (when in use). 43 */ 44 if ( is_singular() && get_option( 'thread_comments' ) ) 45 wp_enqueue_script( 'comment-reply' ); 46 47 /* Always have wp_head() just before the closing </head> 48 * tag of your theme, or you will break many plugins, which 49 * generally use this hook to add elements to <head> such 50 * as styles, scripts, and meta tags. 51 */ 52 wp_head(); 53?> 54</head> 55 56<body <?php body_class(); ?>> 57<div id="wrapper" class="hfeed"> 58 <div id="header"> 59 <div id="masthead"> 60 <div id="branding" role="banner"> 61 <?php $heading_tag = ( is_home() || is_front_page() ) ? 'h1' : 'div'; ?> 62 <<?php echo $heading_tag; ?> id="site-title"> 63 <span> 64 <a href="<?php echo home_url( '/' ); ?>" title="<?php 65echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a> 66 </span> 67 </<?php echo $heading_tag; ?>> 68 <div id="site-description"><?php bloginfo( 'description' ); ?></div> 69 70 <?php 71 // Check if this is a post or page, if it has a thumbnail, and if it's a 72big one 73 if ( is_singular() && current_theme_supports( 'post-thumbnails' ) 74&& 75 has_post_thumbnail( $post->ID ) && 76 ( /* $src, $width, $height */ $image = 77wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'post-thumbnail' ) ) && 78 $image[1] >= HEADER_IMAGE_WIDTH ) : 79 // Houston, we have a new header image! 80 echo get_the_post_thumbnail( $post->ID ); 81 elseif ( get_header_image() ) : ?> 82 <img src="<?php header_image(); ?>" width="<?php 83echo HEADER_IMAGE_WIDTH; ?>" height="<?php echo HEADER_IMAGE_HEIGHT; ?>" alt="" /> 84 <?php endif; ?> 85 </div><!-- #branding --> 86 87 <div id="access" role="navigation"> 88 <?php /* Allow screen readers / text browsers to skip the navigation menu and 89get right to the good stuff */ ?> 90 <div class="skip-link screen-reader-text"><a href="#content" 91title="<?php esc_attr_e( 'Skip to content', 'twentyten' ); ?>"><?php _e( 'Skip to content', 'twentyten' 92); ?></a></div> 93 <?php /* Our navigation menu. If one isn't filled out, wp_nav_menu 94falls back to wp_page_menu. The menu assiged to the primary position is the one used. If none is 95assigned, the menu with the lowest ID is used. */ ?> 96 <?php wp_nav_menu( array( 'container_class' => 'menu-header', 97'theme_location' => 'primary' ) ); ?> 98 </div><!-- #access --> 99 </div><!-- #masthead --> 100 </div><!-- #header --> 10 102 <div id="main">
14 <meta charset="<?php bloginfo( 'charset' ); ?>" />
<link rel="stylesheet" type="text/css" media="all" href="" /<?php bloginfo( 'stylesheet_url' ); ?>>
<?php bloginfo( 'stylesheet_url' ); ?>
12 <html <?php language_attributes(); ?>>