Merge branch 'MDL-78676-master' of https://github.com/sarjona/moodle
[moodle.git] / theme / boost / templates / columns1.mustache
blobd2965a73b71207c09f0f713c698d0d687480cf4d
1 {{!
2     This file is part of Moodle - http://moodle.org/
4     Moodle is free software: you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation, either version 3 of the License, or
7     (at your option) any later version.
9     Moodle is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
14     You should have received a copy of the GNU General Public License
15     along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
17 {{!
18     @template theme_boost/columns1
20     Boost 1 column layout template.
22     Context variables required for this template:
23     * sitename - The name of the site
24     * output - The core renderer for the page
25     * bodyattributes - attributes for the body tag as a string of html attributes
27     Example context (json):
28     {
29         "sitename": "Moodle",
30         "output": {
31             "doctype": "<!DOCTYPE html>",
32             "page_title": "Test page",
33             "favicon": "favicon.ico",
34             "main_content": "<h1>Headings make html validators happier</h1>"
35          },
36          "bodyattributes":""
37     }
39 {{> theme_boost/head }}
41 <body {{{ bodyattributes }}}>
42 {{> core/local/toast/wrapper}}
44 <div id="page-wrapper" class="d-print-block">
46     {{{ output.standard_top_of_body_html }}}
48     <div id="page" class="container-fluid d-print-block">
49         <div id="page-content" class="row pb-3 d-print-block">
50             <div id="region-main-box" class="col-12">
51                 <section id="region-main" aria-label="{{#str}}content{{/str}}">
52                     {{{ output.course_content_header }}}
53                     {{#headercontent}}
54                         {{> core/activity_header }}
55                     {{/headercontent}}
56                     {{{ output.main_content }}}
57                     {{{ output.activity_navigation }}}
58                     {{{ output.course_content_footer }}}
59                 </section>
60             </div>
61         </div>
62     </div>
64     {{{ output.standard_after_main_region_html }}}
66 </div>
67 {{{ output.standard_end_of_body_html }}}
68 </body>
69 </html>
70 {{#js}}
71 M.util.js_pending('theme_boost/loader');
72 require(['theme_boost/loader'], function() {
73     M.util.js_complete('theme_boost/loader');
74 });
75 {{/js}}