mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 08:56:36 +02:00
105 lines
3.8 KiB
Text
105 lines
3.8 KiB
Text
{{!
|
|
This file is part of Moodle - http://moodle.org/
|
|
|
|
Moodle is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
Moodle is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
}}
|
|
{{!
|
|
|
|
@template theme_boost/navbar
|
|
|
|
This template renders the top navbar.
|
|
|
|
Example context (json):
|
|
{
|
|
"output": {
|
|
"should_display_navbar_logo": true,
|
|
"get_compact_logo_url": "http://placekitten.com/50/50",
|
|
"custom_menu": "<li>..</li>",
|
|
"page_heading_menu": "<li>..</li>",
|
|
"search_box": "<div><input type='text'></div>",
|
|
"navbar_plugin_output": "<div class='dropdown'>Messaging</div>",
|
|
"user_menu": "<div class='dropdown'>John Doe</div>"
|
|
},
|
|
"config": {
|
|
"wwwroot": "#"
|
|
},
|
|
"sitename": "Moodle Site",
|
|
"mobileprimarynav": [
|
|
{
|
|
"text": "Dashboard",
|
|
"url": "/my",
|
|
"isactive": true
|
|
},
|
|
{
|
|
"text": "Site home",
|
|
"url": "/",
|
|
"isactive": false
|
|
},
|
|
{
|
|
"text": "My courses",
|
|
"url": "/course",
|
|
"isactive": false
|
|
}
|
|
]
|
|
}
|
|
}}
|
|
<nav class="navbar fixed-top navbar-light bg-white navbar-expand" aria-label="{{#str}}sitemenubar, admin{{/str}}">
|
|
|
|
<div class="d-flex" data-region="drawer-toggle">
|
|
<button class="navbar-toggler aabtn d-block my-1 mr-2" aria-expanded="{{#navdraweropen}}true{{/navdraweropen}}{{^navdraweropen}}false{{/navdraweropen}}" aria-controls="nav-drawer" type="button" data-action="toggle-drawer" data-side="left" data-preference="drawer-open-nav">
|
|
<span class="navbar-toggler-icon"></span>
|
|
<span class="sr-only">{{#str}}sidepanel, core{{/str}}</span>
|
|
</button>
|
|
</div>
|
|
|
|
<button class="navbar-toggler aabtn d-block d-md-none my-1 mr-2" data-toggle="drawers" data-action="toggle" data-target="theme_boost-drawers-primary">
|
|
<span class="navbar-toggler-icon"></span>
|
|
<span class="sr-only">{{#str}}sidepanel, core{{/str}}</span>
|
|
</button>
|
|
|
|
<a href="{{{ config.wwwroot }}}" class="navbar-brand d-none d-md-flex align-items-center m-0 mr-4 p-0 aabtn">
|
|
{{# output.should_display_navbar_logo }}
|
|
<img src="{{output.get_compact_logo_url}}" class="logo mr-1" alt="{{sitename}}">
|
|
{{/ output.should_display_navbar_logo }}
|
|
{{^ output.should_display_navbar_logo }}
|
|
{{{ sitename }}}
|
|
{{/ output.should_display_navbar_logo }}
|
|
</a>
|
|
{{#primarymoremenu}}
|
|
<div class="primary-navigation">
|
|
{{> core/moremenu}}
|
|
</div>
|
|
{{/primarymoremenu}}
|
|
|
|
<ul class="navbar-nav d-none d-md-flex my-1 px-1">
|
|
<!-- page_heading_menu -->
|
|
{{{ output.page_heading_menu }}}
|
|
</ul>
|
|
|
|
<div id="usernavigation" class="navbar-nav ml-auto">
|
|
{{#langmenu}}
|
|
{{> theme_boost/language_menu }}
|
|
{{/langmenu}}
|
|
{{{ output.search_box }}}
|
|
{{{ output.navbar_plugin_output }}}
|
|
<div class="d-flex align-items-stretch usermenu-container" data-region="usermenu">
|
|
{{#usermenu}}
|
|
{{> core/user_menu }}
|
|
{{/usermenu}}
|
|
</div>
|
|
{{{ output.edit_switch }}}
|
|
</div>
|
|
</nav>
|
|
|
|
{{> theme_boost/primary-drawer-mobile }}
|