Initial commit.
[cf_tmp.git] / header.php
blob71fd4ec09c0b9ff668c755c0a423502e72dc0a90
1 <?php
2 /**
3 * Header file. For now, copy and paste from default theme and plaintxt
4 * themes.
5 */
6 ?><!DOCTYPE html>
7 <html <?php language_attributes(); ?>>
8 <head>
9 <meta charset="<?php bloginfo( 'charset' ); ?>" />
10 <title><?php
12 * Print the <title> tag based on what is being viewed.
14 global $page, $paged;
15 wp_title( '|', true, 'right' );
16 // Add the blog name.
17 bloginfo( 'name' );
18 ?></title>
19 <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />
20 <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
21 <?php wp_head(); ?>
22 </head>
34 <body>