2005-01-25 13:17:15 +00:00
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
2003-05-15 13:55:22 +00:00
|
|
|
<html<?php echo $direction ?>>
|
|
|
|
<head>
|
2005-01-25 13:17:15 +00:00
|
|
|
<?php echo $meta ?>
|
|
|
|
<meta name="keywords" content="moodle, <?php echo $title ?> " />
|
|
|
|
<title><?php echo $title ?></title>
|
|
|
|
<link rel="stylesheet" type="text/css" href="<?php echo $styles ?>" />
|
|
|
|
<link rel="shortcut icon" href="<?php echo "$CFG->wwwroot/theme/$CFG->theme" ?>/favicon.ico" />
|
|
|
|
<?php include("$CFG->javascript"); ?>
|
2003-05-15 13:55:22 +00:00
|
|
|
</head>
|
|
|
|
|
2005-01-25 13:17:15 +00:00
|
|
|
<body<?php
|
|
|
|
echo " $bodytags";
|
|
|
|
if ($focus) {
|
|
|
|
echo " onload=\"setfocus()\"";
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
|
|
|
|
<div id="page">
|
|
|
|
|
|
|
|
<?php if ($home) { // This is what gets printed on the home page only
|
2003-05-15 13:55:22 +00:00
|
|
|
?>
|
2005-01-25 13:17:15 +00:00
|
|
|
<div id="header-home">
|
|
|
|
<div class="headermain"><?php echo $heading ?></div>
|
|
|
|
<div class="headermenu"><?php echo $menu ?></div>
|
|
|
|
</div>
|
|
|
|
<?php } else if ($heading) { // This is what gets printed on any other page with a heading
|
|
|
|
?>
|
|
|
|
<div id="header">
|
|
|
|
<div class="headermain"><?php echo $heading ?></div>
|
|
|
|
<div class="headermenu"><?php echo $menu ?></div>
|
|
|
|
</div>
|
2003-05-15 13:55:22 +00:00
|
|
|
<?php } ?>
|
2005-01-25 13:17:15 +00:00
|
|
|
<div class="clearer"> </div>
|
2003-05-15 13:55:22 +00:00
|
|
|
<?php if ($navigation) { // This is the navigation table with breadcrumbs ?>
|
2005-01-25 13:17:15 +00:00
|
|
|
<div id="nav-bar">
|
|
|
|
<div id="breadcrumb"><?php print_navigation("$navigation"); ?></div>
|
|
|
|
<div id="navbutton"><?php echo $button; ?></div>
|
|
|
|
</div>
|
|
|
|
<?php } else if ($heading) { // If no navigation, but a heading, then print a line
|
|
|
|
?>
|
|
|
|
<hr size="1" noshade="noshade" />
|
2003-05-15 13:55:22 +00:00
|
|
|
<?php } ?>
|
2005-01-25 13:17:15 +00:00
|
|
|
<div class="clearer"> </div>
|
|
|
|
<!-- END OF HEADER -->
|
|
|
|
<div id="containerContent">
|