Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
chamilo-lms/main/template/default/layout/block_menu.tpl

19 lines
570 B

{% if block_menu is not empty %}
<div id="{{ block_menu.id }}" class="well sidebar-nav">
{% block block_menu_item %}
{% if block_menu.title is not empty %}
<h4>{{ block_menu.title }}</h4>
{% endif %}
{% if block_menu.elements is not empty %}
<ul class="nav nav-list">
{% for item in block_menu.elements %}
<li><a href="{{ item.href }}"> {{ item.title }}</a></li>
{% endfor %}
</ul>
{% endif %}
{{ block_menu.content }}
{% endblock %}
</div>
{% endif %}