Make WordPress Core


Ignore:
Timestamp:
02/08/2010 06:02:23 PM (17 years ago)
Author:
ryan
Message:

Trim trailing whitespace

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-content/themes/twentyten/header.php

    r13012 r13025  
    33<head>
    44    <title><?php
    5         if ( is_single() ) { single_post_title(); print ' | '; bloginfo('name'); }       
     5        if ( is_single() ) { single_post_title(); print ' | '; bloginfo('name'); }
    66        elseif ( is_home() || is_front_page() ) { bloginfo('name'); print ' | '; bloginfo('description'); get_page_number(); }
    77        elseif ( is_page() ) { single_post_title(''); print ' | '; bloginfo('name'); }
     
    1010        else { bloginfo('name'); wp_title('|'); get_page_number(); }
    1111    ?></title>
    12        
     12
    1313        <meta http-equiv="content-type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
    14        
     14
    1515        <link rel="profile" href="http://gmpg.org/xfn/11">
    1616        <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo('stylesheet_url'); ?>" />
    1717        <link rel="stylesheet" type="text/css" media="print" href="<?php bloginfo('stylesheet_directory'); ?>/print.css" />
    18        
     18
    1919        <?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?>
    20        
     20
    2121        <?php wp_head(); ?>
    22        
     22
    2323        <link rel="alternate" type="application/rss+xml" href="<?php bloginfo('rss2_url'); ?>" title="<?php printf( __( '%s latest posts', 'twentyten' ), wp_specialchars( get_bloginfo('name'), 1 ) ); ?>" />
    2424        <link rel="alternate" type="application/rss+xml" href="<?php bloginfo('comments_rss2_url') ?>" title="<?php printf( __( '%s latest comments', 'twentyten' ), wp_specialchars( get_bloginfo('name'), 1 ) ); ?>" />
    25         <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />       
     25        <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
    2626</head>
    2727
     
    3131        <div id="header">
    3232                <div id="masthead">
    33                
     33
    3434                        <div id="branding">
    3535                                <div id="site-title"><span><a href="<?php bloginfo( 'url' ) ?>/" title="<?php bloginfo( 'name' ) ?>" rel="home"><?php bloginfo( 'name' ) ?></a></span></div>
    3636                                <div id="site-description"><?php bloginfo( 'description' ) ?></div>
    37                                
     37
    3838                                <?php
    3939                                        global $post;
     
    4444                                <?php } ?>
    4545                        </div><!-- #branding -->
    46                        
     46
    4747                        <div id="access">
    4848                                <div class="skip-link screen-reader-text"><a href="#content" title="<?php _e( 'Skip to content', 'twentyten' ) ?>"><?php _e( 'Skip to content', 'twentyten' ) ?></a></div>
    49                                 <?php wp_page_menu( 'sort_column=menu_order' ); ?>                     
     49                                <?php wp_page_menu( 'sort_column=menu_order' ); ?>
    5050                        </div><!-- #access -->
    51                        
    52                 </div><!-- #masthead -->       
     51
     52                </div><!-- #masthead -->
    5353        </div><!-- #header -->
    54        
     54
    5555        <div id="main">
Note: See TracChangeset for help on using the changeset viewer.