<?php /**/ ?><?php
 
if(basename($_SERVER['PHP_SELF'])=="inc.php") echo "You are not supposed to be here!";

 
// Configuration:
 
$site_email "agilo3@gmail.com";



 function 
head($site_title$site_description$site_keywords$site_extra) {
  global 
$site_email;

  
// Start serving:
  
if (stristr($_SERVER["HTTP_ACCEPT"],"application/xhtml+xml")) {
   
header("Content-type: application/xhtml+xml");
   echo 
"<?xml version=\"1.0\" encoding=\"iso-8859-1\"?".">\n";
  } else {
   
header("Content-type: text/html");
   echo 
"<?xml version=\"1.0\" encoding=\"iso-8859-1\"?".">\n";
  }
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr">
<head>
<link href="/" rel="Index" title="Index page" />
<meta name="language"    content="en" />
<meta name="author"      content="Agilo" />
<meta name="contact"     content="<?= $site_email ?>" />
<meta name="description" content="<?= $site_description ?>" />
<meta name="keywords"    content="<?= $site_keywords ?>" />
<title> Agilo's Webserver <?php if (isset($site_title)) echo "- " $site_title?> </title>
<?php if (isset($site_extra)) echo $site_extra?>
</head>

<body>

<h1><?= $site_title ?></h1>
<div id="content">

  <!-- Start content. -->

<?php
 
}


 function 
foot() {
  global 
$site_email;
?>

  <!-- End content. -->

</div>


</body>
</html>
<?php ?>