2010-06-30 23:34:21 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
$hasheading = ($PAGE->heading);
|
|
|
|
$hasnavbar = (empty($PAGE->layout_options['nonavbar']) && $PAGE->has_navbar());
|
|
|
|
$hasfooter = (empty($PAGE->layout_options['nofooter']));
|
|
|
|
$hassidepost = $PAGE->blocks->region_has_content('side-post', $OUTPUT);
|
|
|
|
$showsidepost = ($hassidepost && !$PAGE->blocks->region_completely_docked('side-post', $OUTPUT));
|
|
|
|
|
2010-08-27 08:52:46 +00:00
|
|
|
$custommenu = $OUTPUT->custom_menu();
|
|
|
|
$hascustommenu = (empty($PAGE->layout_options['nocustommenu']) && !empty($custommenu));
|
|
|
|
|
2010-06-30 23:34:21 +00:00
|
|
|
$bodyclasses = array();
|
|
|
|
if ($showsidepost) {
|
|
|
|
$bodyclasses[] = 'side-post-only';
|
|
|
|
} else if (!$showsidepost) {
|
|
|
|
$bodyclasses[] = 'content-only';
|
|
|
|
}
|
|
|
|
|
2010-08-27 08:52:46 +00:00
|
|
|
if ($hascustommenu) {
|
|
|
|
$bodyclasses[] = 'has-custom-menu';
|
|
|
|
}
|
|
|
|
|
2010-06-30 23:34:21 +00:00
|
|
|
echo $OUTPUT->doctype() ?>
|
|
|
|
<html <?php echo $OUTPUT->htmlattributes() ?>>
|
|
|
|
<head>
|
|
|
|
<title><?php echo $PAGE->title ?></title>
|
|
|
|
<link rel="shortcut icon" href="<?php echo $OUTPUT->pix_url('favicon', 'theme')?>" />
|
2011-03-27 12:29:36 +02:00
|
|
|
<meta name="description" content="<?php p(strip_tags(format_text($SITE->summary, FORMAT_HTML))) ?>" />
|
2010-06-30 23:34:21 +00:00
|
|
|
<?php echo $OUTPUT->standard_head_html() ?>
|
|
|
|
</head>
|
|
|
|
|
2011-03-27 12:29:36 +02:00
|
|
|
<body id="<?php p($PAGE->bodyid) ?>" class="<?php p($PAGE->bodyclasses.' '.join(' ', $bodyclasses)) ?>">
|
2010-06-30 23:34:21 +00:00
|
|
|
<?php echo $OUTPUT->standard_top_of_body_html() ?>
|
|
|
|
|
|
|
|
<div id="page">
|
|
|
|
|
2010-08-27 08:52:46 +00:00
|
|
|
<div id="wrapper" class="clearfix">
|
2010-06-30 23:34:21 +00:00
|
|
|
|
|
|
|
<!-- START OF HEADER -->
|
|
|
|
|
2010-08-27 08:52:46 +00:00
|
|
|
<div id="page-header">
|
|
|
|
<div id="page-header-wrapper" class="wrapper clearfix">
|
|
|
|
|
|
|
|
<h1 class="headermain"><?php echo $PAGE->heading ?></h1>
|
|
|
|
<div class="headermenu">
|
|
|
|
<?php
|
|
|
|
echo $OUTPUT->login_info();
|
|
|
|
echo $OUTPUT->lang_menu();
|
|
|
|
echo $PAGE->headingmenu;
|
|
|
|
?>
|
|
|
|
</div>
|
|
|
|
<?php if ($hascustommenu) { ?>
|
|
|
|
<div id="custommenu"><?php echo $custommenu; ?></div>
|
|
|
|
<?php } ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
2011-03-27 12:29:36 +02:00
|
|
|
|
2010-06-30 23:34:21 +00:00
|
|
|
<!-- END OF HEADER -->
|
|
|
|
|
|
|
|
<!-- START OF CONTENT -->
|
|
|
|
|
2010-08-27 08:52:46 +00:00
|
|
|
<div id="page-content-wrapper" class="wrapper clearfix">
|
|
|
|
<div id="page-content">
|
|
|
|
<div id="region-main-box">
|
|
|
|
<div id="region-post-box">
|
2011-03-27 12:29:36 +02:00
|
|
|
|
2010-08-27 08:52:46 +00:00
|
|
|
<div id="region-main-wrap">
|
|
|
|
<div id="region-main">
|
|
|
|
<div class="region-content">
|
2011-08-21 21:01:53 +02:00
|
|
|
<?php echo $OUTPUT->main_content() ?>
|
2010-08-27 08:52:46 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2011-03-27 12:29:36 +02:00
|
|
|
|
2010-08-27 08:52:46 +00:00
|
|
|
<?php if ($hassidepost) { ?>
|
|
|
|
<div id="region-post" class="block-region">
|
|
|
|
<div class="region-content">
|
|
|
|
<?php echo $OUTPUT->blocks_for_region('side-post') ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<?php } ?>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2010-09-21 18:45:18 +00:00
|
|
|
<div class="myclear"></div>
|
|
|
|
|
2010-08-27 08:52:46 +00:00
|
|
|
</div>
|
2011-03-27 12:29:36 +02:00
|
|
|
|
2010-06-30 23:34:21 +00:00
|
|
|
|
|
|
|
<!-- END OF CONTENT -->
|
2010-08-27 08:52:46 +00:00
|
|
|
<div class="myclear"></div>
|
2010-09-21 18:45:18 +00:00
|
|
|
</div> <!-- END #wrapper -->
|
2010-06-30 23:34:21 +00:00
|
|
|
|
2010-07-05 23:20:31 +00:00
|
|
|
<!-- START OF FOOTER -->
|
2010-09-21 18:45:18 +00:00
|
|
|
<div id="footer" class="myclear">
|
2010-08-27 08:52:46 +00:00
|
|
|
<p class="helplink"><?php echo page_doc_link(get_string('moodledocslink')) ?></p>
|
2010-07-05 23:20:31 +00:00
|
|
|
<?php
|
2010-08-27 08:52:46 +00:00
|
|
|
echo $OUTPUT->login_info();
|
|
|
|
echo $OUTPUT->home_link();
|
|
|
|
echo $OUTPUT->standard_footer_html();
|
|
|
|
?>
|
2010-09-21 18:45:18 +00:00
|
|
|
</div>
|
2010-06-30 23:34:21 +00:00
|
|
|
|
|
|
|
<!-- END OF FOOTER -->
|
2010-08-27 08:52:46 +00:00
|
|
|
|
2010-07-05 23:20:31 +00:00
|
|
|
</div> <!-- END #page -->
|
2010-06-30 23:34:21 +00:00
|
|
|
|
|
|
|
<?php echo $OUTPUT->standard_end_of_body_html() ?>
|
|
|
|
</body>
|
|
|
|
</html>
|