mirror of
https://github.com/moodle/moodle.git
synced 2025-08-08 02:16:41 +02:00
50 lines
1.9 KiB
Text
50 lines
1.9 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/>.
|
|
}}
|
|
{{!
|
|
Page header.
|
|
}}
|
|
<header role="banner" class="navbar navbar-light bg-faded navbar-static-top moodle-has-zindex">
|
|
|
|
<div class="container">
|
|
<button class="navbar-toggler pull-xs-right hidden-sm-up" data-toggle="collapse" data-target="#bd-main-nav" aria-expanded="false" aria-controls="bd-main-nav" type="button">☰<span class="sr-only">{{#str}}expand{{/str}}</span></button>
|
|
|
|
<a role="banner" href="{{{ config.wwwroot }}}" class="navbar-brand">
|
|
{{# output.should_display_navbar_logo }}
|
|
<div class="logo">
|
|
<img src="{{output.get_compact_logo_url}}" alt={{#quote}}{{sitename}}{{/quote}}>
|
|
</div>
|
|
{{/ output.should_display_navbar_logo }}
|
|
<div class="site-name">{{{ sitename }}}</div>
|
|
</a>
|
|
|
|
<!-- user_menu -->
|
|
{{{ output.user_menu }}}
|
|
|
|
<!-- search_box -->
|
|
{{{ output.search_box }}}
|
|
|
|
<div class="collapse navbar-toggleable-xs" id="bd-main-nav">
|
|
<nav class="nav navbar-nav">
|
|
<!-- custom_menu -->
|
|
{{{ output.custom_menu }}}
|
|
<!-- page_heading_menu -->
|
|
{{{ output.page_heading_menu }}}
|
|
</nav>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|