Proyectos de Subversion Moodle

Rev

Rev 1 | | Comparar con el anterior | 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
 
19
    @template theme_boost/primary-drawer-mobile
20
 
21
    This template renders the mobile version of the top navbar menu in a drawer.
22
 
23
    Example context (json):
24
    {
25
        "output": {
26
            "should_display_navbar_logo": true,
27
            "get_compact_logo_url": "http://placekitten.com/50/50"
28
        },
29
        "mobileprimarynav": [
30
            {
31
                "text": "Dashboard",
32
                "url": "/my",
33
                "isactive": "true"
34
            },
35
            {
36
                "text": "Site home",
37
                "url": "/",
38
                "isactive": "false"
39
            },
40
            {
41
                "text": "My courses",
42
                "url": "/course",
43
                "isactive": "false"
44
            }
45
        ]
46
    }
47
}}
48
 
49
{{< theme_boost/drawer }}
50
    {{$id}}theme_boost-drawers-primary{{/id}}
51
    {{$drawerclasses}}drawer drawer-left drawer-primary{{/drawerclasses}}
52
    {{$drawercloseonresize}}1{{/drawercloseonresize}}
53
    {{$drawerheading}}
1441 ariadna 54
        <a
55
            href="{{{ config.homeurl }}}"
56
            title="{{{ sitename }}}"
57
            data-region="site-home-link"
58
            class="aabtn text-reset d-flex align-items-center py-1 h-100"
59
        >
60
            {{# output.should_display_navbar_logo }}
61
                <img src="{{output.get_compact_logo_url}}" class="logo py-1 h-100" alt="{{sitename}}">
62
            {{/ output.should_display_navbar_logo }}
63
            {{^ output.should_display_navbar_logo }}
64
                <span class="sitename" title="{{{ sitename }}}">{{{ sitename }}}</span>
65
            {{/ output.should_display_navbar_logo }}
66
        </a>
1 efrain 67
    {{/drawerheading}}
68
    {{$drawercontent}}
69
        <div class="list-group">
70
            {{#mobileprimarynav}}
71
                {{#haschildren}}
1441 ariadna 72
                <a id="drop-down-{{sort}}" href="#" class="list-group-item list-group-item-action icons-collapse-expand {{^isopen}}collapsed {{/isopen}}d-flex" data-bs-toggle="collapse" data-bs-target="#drop-down-menu-{{sort}}" aria-expanded="{{#isopen}}true{{/isopen}}{{^isopen}}false{{/isopen}}" aria-controls="drop-down-menu-{{sort}}">
1 efrain 73
                    {{{text}}}
1441 ariadna 74
                    <span class="ms-auto expanded-icon icon-no-margin mx-2">
1 efrain 75
                        {{#pix}} t/expanded, core {{/pix}}
1441 ariadna 76
                        <span class="visually-hidden">
1 efrain 77
                            {{#str}} collapse, core {{/str}}
78
                        </span>
79
                    </span>
1441 ariadna 80
                    <span class="ms-auto collapsed-icon icon-no-margin mx-2">
1 efrain 81
                        {{#pix}} t/collapsed, core {{/pix}}
1441 ariadna 82
                        <span class="visually-hidden">
1 efrain 83
                            {{#str}} expand, core {{/str}}
84
                        </span>
85
                    </span>
86
                </a>
87
                <div class="collapse {{#isopen}}show {{/isopen}}list-group-item p-0 border-0" role="menu" id="drop-down-menu-{{sort}}" aria-labelledby="drop-down-{{sort}}">
88
                    {{#children}}
89
                        {{^divider}}
1441 ariadna 90
                             <a href="{{{url}}}" class="ps-5 {{^isactive}}bg-light{{/isactive}}{{#isactive}}active{{/isactive}} list-group-item list-group-item-action">{{{text}}}</a>
1 efrain 91
                        {{/divider}}
92
                    {{/children}}
93
                </div>
94
                {{/haschildren}}
95
                {{^haschildren}}
96
                <a href="{{{url}}}" class="list-group-item list-group-item-action {{#isactive}}active{{/isactive}} {{#classes}}{{.}} {{/classes}}" {{#isactive}}aria-current="true"{{/isactive}}>
97
                    {{{text}}}
98
                </a>
99
                {{/haschildren}}
100
            {{/mobileprimarynav}}
101
        </div>
102
    {{/drawercontent}}
103
    {{$drawerstate}}show-drawer-primary{{/drawerstate}}
104
{{/ theme_boost/drawer}}