mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 14:27:22 +01:00
45 lines
1.5 KiB
HTML
45 lines
1.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
|
|
?>
|
|
<div id="header-home">
|
|
<div class="headermain"><?php echo $heading ?></div>
|
|
<div class="headermenu"><?php echo $menu ?></div>
|
|
</div>
|
|
<div class="navbar">
|
|
</div>
|
|
<?php } else if ($heading) { // This is what gets printed on any other page with a heading
|
|
?>
|
|
<div id="header">
|
|
<div class="headermain"><?php echo $heading ?></div>
|
|
<div class="headermenu"><?php echo $menu ?></div>
|
|
<!-- <div class="headermenu"><div id="new-menu"><?php echo $navmenulist ?></div></div> -->
|
|
</div>
|
|
<?php } ?>
|
|
<?php if ($navigation) { // This is the navigation table with breadcrumbs
|
|
?>
|
|
<div class="navbar">
|
|
<div class="breadcrumb"><?php print_navigation("$navigation"); ?></div>
|
|
<div class="navbutton"><?php echo $button; ?></div>
|
|
</div>
|
|
<?php } ?>
|
|
<!-- END OF HEADER -->
|
|
<div id="content">
|