moodle/theme/boost/templates/custom_menu_footer.mustache
Bas Brands 3ec69c2ece MDL-56511 theme_boost: Update to Bootstrap 4 stable
Behat fixes by David Monllao <davidm@moodle.com>
    - Blocks
    - Modals
    - Messaging styling
    - Breadcrumb
    - Pagination
    - Course & categories management
2018-04-18 09:31:53 +08:00

18 lines
491 B
Plaintext

{{#children}}
{{^divider}}
{{#url}}
<li><a href="{{{url}}}" title="{{{title}}}">{{{text}}}</a></li>
{{/url}}
{{^url}}
<li>{{{text}}}</li>
{{/url}}
{{/divider}}
{{#haschildren}}
<li>
<ul class="list-unstyled ml-3">
{{> theme_boost/custom_menu_footer }}
</ul>
</li>
{{/haschildren}}
{{/children}}