moodle/theme/oceanblue/header.html

46 lines
1.6 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">
<html<?php echo $direction ?>>
<head>
2005-03-05 00:34:47 +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-03-05 00:34:47 +00:00
<?php include("$CFG->javascript"); ?>
</head>
2005-03-05 00:34:47 +00:00
<body<?php
echo " $bodytags";
if ($focus) {
echo " onload=\"setfocus()\"";
}
?>>
<div id="page">
<?php //Accessibility: 'headermain' is now H1, see theme/standard/styles_layout.css: .headermain
if ($home) { // This is what gets printed on the home page only
2005-03-05 00:34:47 +00:00
?>
2006-04-08 20:51:38 +00:00
<div id="header-home" class="clearfix">
<h1 class="headermain"><?php echo $heading ?></h1>
2005-03-05 00:34:47 +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
?>
2006-04-08 20:51:38 +00:00
<div id="header" class="clearfix">
<h1 class="headermain"><?php echo $heading ?></h1>
2005-03-05 00:34:47 +00:00
<div class="headermenu"><?php echo $menu ?></div>
</div>
<?php } ?>
2006-04-08 20:51:38 +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">
2005-04-02 13:41:27 +00:00
<div class="breadcrumb"><?php print_navigation($navigation); ?></div>
2005-03-26 09:51:29 +00:00
<div class="navbutton"><?php echo $button; ?></div>
2006-04-08 20:51:38 +00:00
</div>
2005-03-05 00:34:47 +00:00
<?php } else if ($heading) { // If no navigation, but a heading, then print a line
?>
2007-01-04 04:44:54 +00:00
<hr />
<?php } ?>
2005-03-05 00:34:47 +00:00
<!-- END OF HEADER -->
<div id="content">