2005-01-30 23:32:05 +00:00
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
|
|
<html<?php echo $direction ?>>
|
|
|
|
<head>
|
|
|
|
<?php echo $meta ?>
|
|
|
|
<meta name="keywords" content="moodle, <?php echo $title ?> " />
|
|
|
|
<title><?php echo $title ?></title>
|
2006-10-09 10:12:41 +00:00
|
|
|
<link rel="shortcut icon" href="<?php echo $CFG->themewww .'/'. current_theme() ?>/favicon.ico" />
|
2005-01-30 23:32:05 +00:00
|
|
|
<?php include("$CFG->javascript"); ?>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body<?php
|
|
|
|
echo " $bodytags";
|
|
|
|
if ($focus) {
|
|
|
|
echo " onload=\"setfocus()\"";
|
|
|
|
};
|
2006-04-23 19:02:17 +00:00
|
|
|
?>>
|
2005-01-30 23:32:05 +00:00
|
|
|
|
|
|
|
<div id="page">
|
|
|
|
|
|
|
|
<?php if ($home) { // This is what gets printed on the home page only
|
|
|
|
?>
|
|
|
|
<div id="header-home">
|
|
|
|
<div class="headermain"><?php echo $heading ?></div>
|
|
|
|
<div class="headermenu"><?php echo $menu ?></div>
|
|
|
|
</div>
|
2005-07-14 16:36:08 +00:00
|
|
|
<div class="navbar">
|
2005-01-30 23:32:05 +00:00
|
|
|
</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>
|
2005-07-14 16:36:08 +00:00
|
|
|
<!-- <div class="headermenu"><div id="new-menu"><?php echo $navmenulist ?></div></div> -->
|
2005-01-30 23:32:05 +00:00
|
|
|
</div>
|
|
|
|
<?php } ?>
|
2006-04-23 11:45:37 +00:00
|
|
|
<?php if ($navigation) { // This is the navigation table with breadcrumbs
|
|
|
|
?>
|
2005-07-14 16:36:08 +00:00
|
|
|
<div class="navbar">
|
|
|
|
<div class="breadcrumb"><?php print_navigation("$navigation"); ?></div>
|
|
|
|
<div class="navbutton"><?php echo $button; ?></div>
|
2005-01-30 23:32:05 +00:00
|
|
|
</div>
|
|
|
|
<?php } ?>
|
|
|
|
<!-- END OF HEADER -->
|
2006-04-23 19:02:17 +00:00
|
|
|
<div id="content">
|