initial commit

This commit is contained in:
Ben Ramey
2017-03-02 21:36:05 -06:00
commit e85327b977
1953 changed files with 176586 additions and 0 deletions

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

@@ -0,0 +1,26 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<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 id='<?php echo $this->pageName ?>'>
<?php include 'layout.php' ?>
</body>
</html>