davical/inc/page-header.php
2006-09-13 14:11:13 +12:00

17 lines
227 B
PHP

<?php
if ( !isset($c->title) ) {
$c->title = "Really Simple CalDAV Store";
}
echo <<<EOHDR
<html>
<head>
<meta/>
<title>$c->title</title>
<link rel="stylesheet" type="text/css" href="/rscds.css" />
</head>
<body>
EOHDR;
?>