Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
{{!
2
    This file is part of Moodle - http://moodle.org/
3
 
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.
8
 
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.
13
 
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/>.
16
}}
17
{{!
18
    Context variables required for this template:
19
    * output - The core renderer for the page
20
 
21
    Example context (json):
22
    {
23
        "output": {
24
            "doctype": "<!DOCTYPE html>",
25
            "page_title": "Test page",
26
            "favicon": "favicon.ico",
27
            "main_content": "<h1>Headings make html validators happier</h1>"
28
         }
29
    }
30
}}
31
{{> theme_universe/head }}
32
 
33
<body {{{ output.body_attributes }}}>
34
{{> core/local/toast/wrapper}}
35
 
36
<div id="page-wrapper-maintenance">
37
 
38
    {{{ output.standard_top_of_body_html }}}
39
 
40
    <div id="page-maintenance" class="mt-3 wrapper-xl">
41
 
42
        <div id="page-content" class="page-content">
43
            <div class="wrapper-xl">{{{ output.page_heading }}}</div>
44
            <section id="region-main" aria-label="{{#str}}content{{/str}}">
45
                <div class="wrapper-xl maintenance-wrapper">
46
                    {{{ output.main_content }}}
47
                </div>
48
            </section>
49
        </div>
50
 
51
        {{> theme_universe/footer-simple }}
52
    </div>
53
 
54
</div>
55
 
56
</body>
57
</html>
58
{{#js}}
59
M.util.js_pending('theme_universe/loader');
60
require(['theme_universe/loader'], function() {
61
  M.util.js_complete('theme_universe/loader');
62
});
63
{{/js}}