Skip to content

Commit

Permalink
Removed profile attribute from head element
Browse files Browse the repository at this point in the history
Added link element for profile URI
Reordered some of the head contents
  • Loading branch information
splorp committed Jun 3, 2010
1 parent cf7af33 commit 2b6bdfa
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions header.php
Expand Up @@ -6,16 +6,17 @@
?>
<!DOCTYPE html>
<html>
<head profile="http://gmpg.org/xfn/11">
<head>
<meta charset="<?php bloginfo('charset'); ?>" />
<title><?php wp_title('&laquo;', true, 'right'); ?> <?php bloginfo('name'); ?></title>
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<link rel="profile" href="http://gmpg.org/xfn/11" />
<?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?>
<?php wp_head(); ?>
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>

<body>
Expand Down

0 comments on commit 2b6bdfa

Please sign in to comment.