{{!
    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/>.

    @package   theme_lambda2
    @copyright 2024 redPIthemes
}}
{{!
    @template theme_lambda2/language_menu
}}

<div class="langmenu navigation">
    <ul id="nav-langmenu" class="nav more-nav navbar-nav">
        <li class="dropdown nav-item" role="none">
            <a class="dropdown-toggle nav-link"  role="menuitem" data-toggle="dropdown" aria-label="{{#str}}language{{/str}}" aria-haspopup="true" aria-expanded="false" href="#" aria-controls="drop-down-langmenu" tabindex="-1">
                {{title}}
                <b class="caret"></b>
            </a>
            <div class="dropdown-menu" role="menu" id="drop-down-langmenu" aria-labelledby="drop-down-langmenu">
                {{#items}}
                    {{#link}}
                        <a href="{{{url}}}" class="dropdown-item" role="menuitem" {{#isactive}}aria-current="true"{{/isactive}}
                                {{#attributes}}{{key}}="{{value}}" {{/attributes}}>
                            {{text}}
                        </a>
                    {{/link}}
                {{/items}}
            </div>
        </li>
    </ul>
</div>