moodle/theme/cornflower/header.html

45 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">
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>
<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>
<body <?php
2005-06-09 08:30:55 +00:00
echo " $bodytags";
if ($focus) {
echo " onload=\"setfocus()\"";
}
?>>
<div class="cornflowersurround">
2005-06-09 08:30:55 +00:00
<div id="page">
<?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>
<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
?>
<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>
<div class="headermenu"><?php echo $menu ?></div>
</div>
<div class="clearer"></div>
2005-06-09 08:30:55 +00:00
<?php } ?>
<?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 -->
<div class="clearer"></div>
2005-06-09 08:30:55 +00:00
<div id="content">