2007-01-03 16:04:08 +00:00
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
2005-06-09 08:30:55 +00:00
|
|
|
<html<?php echo $direction ?>>
|
|
|
|
<head>
|
|
|
|
<?php echo $meta ?>
|
|
|
|
<meta name="keywords" content="moodle, <?php echo $title ?> " />
|
|
|
|
<title><?php echo $title ?></title>
|
2007-02-02 08:29:45 +00:00
|
|
|
<link rel="shortcut icon" href="<?php echo $CFG->wwwroot.'/theme/'.current_theme() ?>/favicon.ico" />
|
2005-06-09 08:30:55 +00:00
|
|
|
<?php include("$CFG->javascript"); ?>
|
|
|
|
</head>
|
|
|
|
|
2007-02-02 08:29:45 +00:00
|
|
|
<body <?php
|
2005-06-09 08:30:55 +00:00
|
|
|
echo " $bodytags";
|
|
|
|
if ($focus) {
|
|
|
|
echo " onload=\"setfocus()\"";
|
|
|
|
}
|
|
|
|
?>>
|
2007-02-02 08:29:45 +00:00
|
|
|
<div class="cornflowersurround">
|
2005-06-09 08:30:55 +00:00
|
|
|
<div id="page">
|
|
|
|
|
2007-02-02 08:29:45 +00:00
|
|
|
<?php if ($home) { // home page ?>
|
|
|
|
<div id="header-home">
|
2007-03-28 02:52:01 +00:00
|
|
|
<div class="headermain"><img alt="" src="<?php echo $CFG->wwwroot.'/theme/'.current_theme() ?>/images/logo.jpg" width="457" height="64" /></div>
|
2007-02-02 08:29:45 +00:00
|
|
|
<div class="headermenu"><?php echo $menu ?></div>
|
|
|
|
</div>
|
|
|
|
<?php } else if ($heading) { // This is what gets printed on any other page with a heading
|
2005-06-09 08:30:55 +00:00
|
|
|
?>
|
2007-02-02 08:29:45 +00:00
|
|
|
<div id="header-home">
|
2007-03-28 02:52:01 +00:00
|
|
|
<div class="headermain"><img alt="" src="<?php echo $CFG->wwwroot.'/theme/'.current_theme() ?>/images/logo.jpg" width="457" height="64" /></div>
|
2007-02-02 08:29:45 +00:00
|
|
|
<div class="headermenu"><?php echo $menu ?></div>
|
|
|
|
</div>
|
|
|
|
<div class="clearer"></div>
|
2005-06-09 08:30:55 +00:00
|
|
|
<?php } ?>
|
2007-02-02 08:29:45 +00:00
|
|
|
<?php //Accessibility: breadcrumb trail/navbar now a DIV, not a table.
|
|
|
|
if ($navigation) { // This is the navigation bar with breadcrumbs ?>
|
|
|
|
<div class="navbar clearfix">
|
|
|
|
<div class="breadcrumb"><?php print_navigation($navigation); ?></div>
|
|
|
|
<div class="navbutton"><?php echo $button; ?></div>
|
|
|
|
</div>
|
|
|
|
<?php } else if ($heading) { // If no navigation, but a heading, then print a line ?>
|
|
|
|
|
|
|
|
<?php } ?>
|
2005-06-09 08:30:55 +00:00
|
|
|
<!-- END OF HEADER -->
|
2007-02-02 08:29:45 +00:00
|
|
|
<div class="clearer"></div>
|
2005-06-09 08:30:55 +00:00
|
|
|
<div id="content">
|