mirror of
https://github.com/moodle/moodle.git
synced 2025-02-12 11:32:04 +01:00
60 lines
2.5 KiB
HTML
60 lines
2.5 KiB
HTML
<!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>
|
|
<?php echo $meta ?>
|
|
<meta name="keywords" content="moodle, <?php echo $title ?> " />
|
|
<title><?php echo $title ?></title>
|
|
<link rel="shortcut icon" href="<?php echo $CFG->themewww .'/'. current_theme() ?>/favicon.ico" />
|
|
<?php include("$CFG->javascript"); ?>
|
|
</head>
|
|
|
|
<body<?php
|
|
echo " $bodytags";
|
|
if ($focus) {
|
|
echo " onload=\"setfocus()\"";
|
|
}
|
|
?>>
|
|
|
|
<div id="page">
|
|
|
|
<?php if ($home) { // This is what gets printed on the home page only
|
|
if (file_exists($CFG->dirroot.'/logo.jpg')) {
|
|
$standardlogo = $CFG->httpswwwroot.'/logo.jpg';
|
|
} else if (file_exists($CFG->dirroot.'/logo.gif')) {
|
|
$standardlogo = $CFG->httpswwwroot.'/logo.gif';
|
|
} else if (file_exists($CFG->dataroot.'/1/logo.jpg')) {
|
|
require_once($CFG->libdir.'/filelib.php');
|
|
$standardlogo = get_file_url('1/logo.jpg', null, 'httpscoursefile');
|
|
} else if (file_exists($CFG->dataroot.'/1/logo.gif')) {
|
|
require_once($CFG->libdir.'/filelib.php');
|
|
$standardlogo = get_file_url('1/logo.gif', null, 'httpscoursefile');
|
|
} else {
|
|
$standardlogo = $CFG->httpsthemewww .'/'. current_theme().'/logo.gif';
|
|
}
|
|
|
|
//Accessibility: warning: ALT text will need editing if logo changes. 'headermain' is now H1.
|
|
?>
|
|
<?php print_container_start(true, '', 'header-home'); ?>
|
|
<h1 class="headermain"><img alt="Moodle" src="<?php echo $standardlogo ?>" /></h1>
|
|
<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
|
|
?>
|
|
<?php print_container_start(true, '', 'header'); ?>
|
|
<h1 class="headermain"><?php echo $heading ?></h1>
|
|
<div class="headermenu"><?php echo $menu ?></div>
|
|
<?php print_container_end(); ?>
|
|
<?php } ?>
|
|
<?php //Accessibility: breadcrumb trail/navbar now a DIV, not a table.
|
|
if ($navigation) { // This is the navigation table 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
|
|
?>
|
|
<hr />
|
|
<?php } ?>
|
|
<!-- END OF HEADER -->
|
|
<?php print_container_start(false, '', 'content'); ?>
|