| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <?php
- // This file is part of The Bootstrap 3 Moodle theme
- //
- // Moodle is free software: you can redistribute it and/or modify
- // it under the terms of the GNU General Public License as published by
- // the Free Software Foundation, either version 3 of the License, or
- // (at your option) any later version.
- //
- // Moodle is distributed in the hope that it will be useful,
- // but WITHOUT ANY WARRANTY; without even the implied warranty of
- // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- // GNU General Public License for more details.
- //
- // You should have received a copy of the GNU General Public License
- // along with Moodle. If not, see <http://www.gnu.org/licenses/>.
- $hassidepre = $PAGE->blocks->region_has_content('side-pre', $OUTPUT);
- $hassidepost = $PAGE->blocks->region_has_content('side-post', $OUTPUT);
- $regions = bootstrap_grid($hassidepre, $hassidepost);
- $PAGE->requires->jquery();
- $PAGE->requires->jquery_plugin('bootstrap', 'theme_bootstrap');
- $settingshtml = theme_bootstrap_html_for_settings($PAGE);
- echo $OUTPUT->doctype() ?>
- <html <?php echo $OUTPUT->htmlattributes(); ?>>
- <head>
- <title><?php echo $OUTPUT->page_title(); ?></title>
- <link rel="shortcut icon" href="<?php echo $OUTPUT->favicon(); ?>" />
- <?php echo $settingshtml->brandfontlink; ?>
- <?php echo $OUTPUT->standard_head_html() ?>
- <meta name="viewport" content="width=device-width, initial-scale=1.0, minimal-ui">
- </head>
- <body <?php echo $OUTPUT->body_attributes(); ?>>
- <?php echo $OUTPUT->standard_top_of_body_html() ?>
- <nav role="navigation" class="<?php echo $settingshtml->navbarclass ?>">
- <div class="navbar-header">
- <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#moodle-navbar">
- <span class="sr-only">Toggle navigation</span>
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- </button>
- <a class="brand" href="<?php echo $CFG->wwwroot;?>"><?php echo $SITE->shortname; ?></a>
- <div id="moodle-navbar" class="navbar-collapse collapse">
- <?php echo $OUTPUT->custom_menu(); ?>
- <ul class="nav pull-right">
- <li><?php echo $OUTPUT->page_heading_menu(); ?></li>
- <li class="navbar-text"><?php echo $OUTPUT->login_info() ?></li>
- </ul>
- </div>
- </div>
- </nav>
- <div id="page" class="container">
- <header id="page-header" class="clearfix">
- <?php echo $OUTPUT->page_heading(); ?>
- </header>
- <div id="page-content" class="row">
- <div id="region-main" class="<?php echo $regions['content']; ?>">
- <?php
- echo $OUTPUT->course_content_header();
- echo $OUTPUT->main_content();
- echo $OUTPUT->course_content_footer();
- ?>
- </div>
- <?php
- if ($hassidepre) {
- echo $OUTPUT->blocks('side-pre', $regions['pre']);
- }?>
- <?php
- if ($hassidepost) {
- echo $OUTPUT->blocks('side-post', $regions['post']);
- }?>
- </div>
- <?php echo $OUTPUT->standard_end_of_body_html() ?>
- </div>
- </body>
- </html>
|