initial commit

This commit is contained in:
Ben Ramey
2017-03-02 21:32:16 -06:00
commit 194e0ca89e
399 changed files with 16444 additions and 0 deletions

33
production/site/layout/html.php Executable file
View File

@@ -0,0 +1,33 @@
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta name='keywords' content='international jairus society, francis montocchio, vienna, austria,
Institutes for Achievement of Human Potential, Advanced Biomechanical Rehabilitation, ABR, IAHP,
brain injury, gerard montocchio, helena prosser, trenton gruber' />
<meta name="description" content="As parents of a severely brain-injured child, we, Ilse and Francis
Montocchio, the founders of the International Jairus Society, have discovered through personal
experience with home treatment programs that brain injury is treatable, and that the single
most important aspect of life with a brain-injured person in the family is knowing: what to do,
doing it, and seeing results which amounts to hope." />
<title><?php echo $this->title ?></title>
<?php
# print out all of our CSS file links
foreach($this->cssFiles as $file)
{
print "<link href='$file' rel='stylesheet' type='text/css' />\n";
}
# print out all of our Javascript file links
foreach($this->jsFiles as $file)
{
print "<script type='text/javascript' src='$file'></script>\n";
}
?>
</head>
<body>
<?php include 'layout.php' ?>
</body>
</html>