2004-08-20 19:14:27 +02:00
|
|
|
<?php
|
|
|
|
// If a header.php file exists in the WP root directory we
|
|
|
|
// use that, otherwise use this default wp-header.php file.
|
2004-12-08 22:51:25 +01:00
|
|
|
if ( file_exists(TEMPLATEPATH . '/header.php') ) :
|
|
|
|
include_once(TEMPLATEPATH . '/header.php');
|
2004-08-20 19:14:27 +02:00
|
|
|
else :
|
|
|
|
?>
|
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
|
|
|
2004-08-25 09:40:46 +02:00
|
|
|
<head profile="http://gmpg.org/xfn/11">
|
2004-08-20 19:14:27 +02:00
|
|
|
<title><?php bloginfo('name'); ?><?php wp_title(); ?></title>
|
|
|
|
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=<?php bloginfo('charset'); ?>" />
|
2004-10-08 19:58:02 +02:00
|
|
|
<meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <!-- leave this for stats please -->
|
2004-08-20 19:14:27 +02:00
|
|
|
|
|
|
|
<style type="text/css" media="screen">
|
2004-10-08 19:58:02 +02:00
|
|
|
@import url( <?php bloginfo('stylesheet_url'); ?> );
|
2004-08-20 19:14:27 +02:00
|
|
|
</style>
|
2004-10-08 19:58:02 +02:00
|
|
|
|
2004-08-20 19:14:27 +02:00
|
|
|
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" />
|
|
|
|
<link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo('rss_url'); ?>" />
|
|
|
|
<link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" />
|
|
|
|
|
|
|
|
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
|
|
|
|
<?php wp_get_archives('type=monthly&format=link'); ?>
|
|
|
|
<?php //comments_popup_script(); // off by default ?>
|
|
|
|
<?php wp_head(); ?>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<div id="rap">
|
|
|
|
<h1 id="header"><a href="<?php bloginfo('url'); ?>"><?php bloginfo('name'); ?></a></h1>
|
|
|
|
|
|
|
|
<div id="content">
|
|
|
|
<?php endif; ?>
|