Changeset 2123 for trunk/wp-content/themes/default/header.php
- Timestamp:
- 01/24/2005 05:59:00 AM (21 years ago)
- File:
-
- 1 edited
-
trunk/wp-content/themes/default/header.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/themes/default/header.php
r2040 r2123 4 4 <head profile="http://gmpg.org/xfn/11"> 5 5 <title><?php bloginfo('name'); ?> <?php if ( is_single() ) { ?> » Blog Archive <?php } ?> <?php wp_title(); ?></title> 6 6 7 7 <meta http-equiv="Content-Type" content="text/html; charset=<?php bloginfo('charset'); ?>" /> 8 8 <meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <!-- leave this for stats --> 9 9 10 10 <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" /> 11 <link rel="stylesheet" type="text/css" media="print" href="<?php echo get_settings('siteurl'); ?>/print.css" /> 12 <link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" /> 13 <link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo('rss_url'); ?>" /> 14 <link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" /> 15 <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" /> 11 16 12 17 <style type="text/css" media="screen"> 13 18 14 19 /* BEGIN IMAGE CSS */ 15 20 /* To accomodate differing install paths of WordPress, images are referred only here, … … 31 36 /* END IMAGE CSS */ 32 37 33 38 34 39 /* To ease the insertion of a personal header image, I have done it in such a way, 35 40 that you simply drop in an image called 'personalheader.jpg' into your /images/ … … 37 42 get cropped off of the image. */ 38 43 44 /* 39 45 #headerimg { background: url('<?php bloginfo('stylesheet_directory'); ?>/images/personalheader.jpg') no-repeat top;} 40 46 */ 47 41 48 </style> 42 43 <link rel="stylesheet" type="text/css" media="print" href="<?php echo get_settings('siteurl'); ?>/print.css" /> 44 <link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" /> 45 <link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo('rss_url'); ?>" /> 46 <link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" /> 47 <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" /> 48 49 <?php wp_get_archives('type=monthly&format=link'); ?> 50 49 50 <?php wp_get_archives('type=monthly&format=link'); ?> 51 51 52 <?php wp_head(); ?> 52 53 </head> 53 54 <body> 55 54 56 <div id="page"> 55 57 … … 57 59 <div id="header"> 58 60 <div id="headerimg"> 59 <h1><a href="<?php echo get_settings('siteurl'); ?>" title="<?php bloginfo('name'); ?>"><?php bloginfo('name'); ?></a></h1>61 <h1><a href="<?php echo get_settings('siteurl'); ?>"><?php bloginfo('name'); ?></a></h1> 60 62 <div class="description"><?php bloginfo('description'); ?></div> 61 63 </div>
Note: See TracChangeset
for help on using the changeset viewer.