Proyectos de Subversion Moodle

Rev

Rev 1 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1 Rev 1441
Línea 1... Línea 1...
1
{{!
1
{{!
-
 
2
    This file is part of Moodle - http://moodle.org/
-
 
3
    Moodle is free software: you can redistribute it and/or modify
-
 
4
    it under the terms of the GNU General Public License as published by
-
 
5
    the Free Software Foundation, either version 3 of the License, or
-
 
6
    (at your option) any later version.
-
 
7
    Moodle is distributed in the hope that it will be useful,
-
 
8
    but WITHOUT ANY WARRANTY; without even the implied warranty of
-
 
9
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-
 
10
    GNU General Public License for more details.
-
 
11
    You should have received a copy of the GNU General Public License
-
 
12
    along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
-
 
13
}}
-
 
14
{{!
2
    @template core/block
15
    @template core/block
Línea 3... Línea 16...
3
 
16
 
4
    Example context (json):
17
    Example context (json):
5
    {
18
    {
6
        "id": "block0",
19
        "id": "block0",
7
        "class": "block block_html",
20
        "class": "block block_html",
8
        "showskiplink": true,
21
        "showskiplink": true,
9
        "type": "html",
22
        "type": "html",
-
 
23
        "ariarole": "",
10
        "ariarole": "complementary",
24
        "showtitle": true,
11
        "title": "Test block",
25
        "title": "Test block",
12
        "blockinstanceid": 1,
26
        "blockinstanceid": 1,
13
        "content": "<p>Hello block world!</p>"
27
        "content": "<p>Hello block world!</p>"
Línea 14... Línea 28...
14
    }
28
    }
15
 
29
 
16
}}
30
}}
17
{{! Block Skip Link }}
31
{{! Block Skip Link }}
18
{{#showskiplink}}
32
{{#showskiplink}}
Línea 19... Línea 33...
19
  <a href="#sb-{{skipid}}" class="sr-only sr-only-focusable">{{#str}}skipa, access, {{{title}}}{{/str}}</a>
33
  <a href="#sb-{{skipid}}" class="visually-hidden-focusable">{{#str}}skipa, access, {{{title}}}{{/str}}</a>
20
{{/showskiplink}}
34
{{/showskiplink}}
21
 
35
 
22
{{! Start Block Container }}
36
{{! Start Block Container }}
23
<section id="{{id}}"
37
<section id="{{id}}"
24
     class="{{#hidden}}hidden{{/hidden}} {{class}} {{#hascontrols}}block_with_controls{{/hascontrols}} card mb-3"
38
     class="{{#hidden}}hidden{{/hidden}} {{class}} {{#hascontrols}}block_with_controls{{/hascontrols}} card mb-3"
25
     role="{{ariarole}}"
39
     {{#ariarole}}role="{{.}}"{{/ariarole}}
26
     data-block="{{type}}"
40
     data-block="{{type}}"
27
     data-instance-id="{{blockinstanceid}}"
41
     data-instance-id="{{blockinstanceid}}"
28
     {{#arialabel}}
42
     {{#arialabel}}
29
        aria-label="{{arialabel}}"
43
        aria-label="{{arialabel}}"
30
     {{/arialabel}}
44
     {{/arialabel}}
31
     {{^arialabel}}
45
     {{^arialabel}}
32
        {{#title}}
46
        {{#showtitle}}
Línea 33... Línea 47...
33
          aria-labelledby="instance-{{blockinstanceid}}-header"
47
          aria-labelledby="instance-{{blockinstanceid}}-header"
34
        {{/title}}
48
        {{/showtitle}}
Línea 35... Línea 49...
35
     {{/arialabel}}>
49
     {{/arialabel}}>
36
 
50
 
37
    {{! Block contents }}
51
    {{! Block contents }}
38
    <div class="card-body p-3">
52
    <div class="card-body p-3">
Línea 39... Línea 53...
39
 
53
 
40
        {{! Block header }}
54
        {{! Block header }}
41
        {{#title}}
55
        {{#showtitle}}
42
            <h3 id="instance-{{blockinstanceid}}-header" class="h5 card-title d-inline">{{{title}}}</h3>
56
            <h3 id="instance-{{blockinstanceid}}-header" class="h5 card-title d-inline">{{{title}}}</h3>
43
        {{/title}}
57
        {{/showtitle}}
Línea 44... Línea 58...
44
 
58