mirror of
https://gitlab.com/davical-project/davical.git
synced 2026-05-19 01:34:26 +00:00
17 lines
227 B
PHP
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;
|
|
|
|
?>
|