moodle/theme/metal/header.html

46 lines
1.7 KiB
HTML
Raw Normal View History

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">
2004-05-20 04:31:01 +00:00
<html<?php echo $direction ?>>
<head>
2005-06-09 08:30:55 +00:00
<?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-06-09 08:30:55 +00:00
<?php include("$CFG->javascript"); ?>
2004-05-20 04:31:01 +00:00
</head>
2005-06-09 08:30:55 +00:00
<body<?php
echo " $bodytags";
if ($focus) {
echo " onload=\"setfocus()\"";
}
?>>
2005-06-09 08:30:55 +00:00
<div id="page">
2004-05-20 04:31:01 +00:00
<?php if ($home) { // This is what gets printed on the home page only
2005-06-09 08:30:55 +00:00
?>
<?php print_container_start(true, '', 'header-home'); ?>
<h1 class="headermain"><?php echo $heading ?></h1>
2005-06-09 08:30:55 +00:00
<div class="headermenu"><?php echo $menu ?></div>
<?php print_container_end(); ?>
<?php } else if ($heading) { // This is what gets printed on any other page with a heading
2005-06-09 08:30:55 +00:00
?>
<?php print_container_start(true, '', 'header'); ?>
<h1 class="headermain"><?php echo $heading ?></h1>
2005-06-09 08:30:55 +00:00
<div class="headermenu"><?php echo $menu ?></div>
<?php print_container_end(); ?>
2004-05-20 04:31:01 +00:00
<?php } ?>
2005-06-09 08:30:55 +00:00
<div class="clearer">&nbsp;</div>
2004-05-20 04:31:01 +00:00
<?php if ($navigation) { // This is the navigation table with breadcrumbs ?>
2006-10-30 03:01:49 +00:00
<div class="navbar clearfix">
2007-08-24 12:45:16 +00:00
<div class="breadcrumb"><?php print_navigation($navigation); ?></div>
2005-06-09 08:30:55 +00:00
<div class="navbutton"><?php echo $button; ?></div>
2006-10-30 03:01:49 +00:00
</div>
<?php } else if ($heading) { // If no navigation, but a heading, then print a line
2005-06-09 08:30:55 +00:00
?>
2007-01-04 04:44:54 +00:00
<hr />
2004-05-20 04:31:01 +00:00
<?php } ?>
2005-06-09 08:30:55 +00:00
<div class="clearer">&nbsp;</div>
<!-- END OF HEADER -->
<?php print_container_start(false, '', 'content'); ?>