weekly release 3.6.6+
[moodle.git] / theme / boost / templates / flat_navigation.mustache
blobf19e907c904fd44ed1d434ccc087c453491da322
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/flat_navigation
20     Display the flat navigation for the boost theme
22     Classes required for JS:
23     * none
25     Data attributes required for JS:
26     * none
28     Context variables required for this template:
29     * flatnavigation - array of flat_navigation_nodes
30       * showdivider - boolean
31       * action - string
32       * isactive - boolean
33       * get_indent - integer
34       * is_section - boolean
35       * text - HTML
37     Example context (json):
38     {
39         "flatnavigation" : [
40             {
41                 "showdivider": false,
42                 "action": "#",
43                 "isactive": true,
44                 "get_indent": 1,
45                 "is_section": false,
46                 "text": "First"
47             },{
48                 "showdivider": true,
49                 "action": "#",
50                 "isactive": false,
51                 "get_indent": 0,
52                 "is_section": true,
53                 "text": "Last &amp; Second"
54             }
55         ]
56     }
58 <nav class="list-group">
59 {{# flatnavigation }}
60     {{#showdivider}}
61 </nav>
62 <nav class="list-group m-t-1">
63     {{/showdivider}}
64     {{#action}}
65     <a class="list-group-item list-group-item-action {{#isactive}}active{{/isactive}}" href="{{{action}}}" data-key="{{key}}" data-isexpandable="{{isexpandable}}" data-indent="{{get_indent}}" data-showdivider="{{showdivider}}" data-type="{{type}}" data-nodetype="{{nodetype}}" data-collapse="{{collapse}}" data-forceopen="{{forceopen}}" data-isactive="{{isactive}}" data-hidden="{{hidden}}" data-preceedwithhr="{{preceedwithhr}}" {{#parent.key}}data-parent-key="{{.}}"{{/parent.key}}>
66         <div class="m-l-{{get_indent}}">
67             <div class="media">
68             {{#icon.pix}}
69                 <span class="media-left">
70                     {{#pix}}{{{icon.pix}}}, {{{icon.component}}}, {{{icon.alt}}}{{/pix}}
71                 </span>
72             {{/icon.pix}}
73                 <span class="media-body {{#isactive}}font-weight-bold{{/isactive}}">{{{text}}}</span>
74             </div>
75         </div>
76     </a>
77     {{/action}}
78     {{^action}}
79     <div class="list-group-item" data-key="{{key}}" data-isexpandable="{{isexpandable}}" data-indent="{{get_indent}}" data-showdivider="{{showdivider}}" data-type="{{type}}" data-nodetype="{{nodetype}}" data-collapse="{{collapse}}" data-forceopen="{{forceopen}}" data-isactive="{{isactive}}" data-hidden="{{hidden}}" data-preceedwithhr="{{preceedwithhr}}" {{#parent.key}}data-parent-key="{{.}}"{{/parent.key}}>
80         <div class="m-l-{{get_indent}}">
81             <div class="media">
82             {{#icon.pix}}
83                 <span class="media-left">
84                     {{#pix}}{{{icon.pix}}}, {{{icon.component}}}, {{{icon.alt}}}{{/pix}}
85                 </span>
86             {{/icon.pix}}
87                 <span class="media-body">{{{text}}}</span>
88             </div>
89         </div>
90     </div>
91     {{/action}}
92 {{/ flatnavigation }}
93 </nav>