26 lines
632 B
PHP
Executable File
26 lines
632 B
PHP
Executable File
<!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>
|