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/page.tpl

68 lines
2.4 KiB

<!DOCTYPE html>
<!--[if lt IE 7]> <html lang="{{ document_language }}" class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html lang="{{ document_language }}" class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html lang="{{ document_language }}" class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!-->
<html lang="{{ document_language }}" class="no-js"> <!--<![endif]-->
<head>
{% block head %}
{% include 'layout/head.tpl'|get_template %}
{% endblock %}
</head>
<body class="{{ 'page_origin' ? ('page_origin_' ~ page_origin) : '' }}">
<!-- START MAIN -->
<main id="main" dir="{{ text_direction }}" class="{{ section_name }} {{ login_class }}">
<noscript>{{ "NoJavascript"|get_lang }}</noscript>
{% if frmDisplayCookieUsageWarning %}
<!-- START DISPLAY COOKIES VALIDATION -->
<div class="toolbar-cookie alert-warning">
{{ frmDisplayCookieUsageWarning }}
</div>
<!-- END DISPLAY COOKIES VALIDATION -->
{% endif %}
{% if show_header == true %}
<!-- START HEADER -->
<header id="cm-header">
{% include 'layout/page_header.tpl'|get_template %}
</header>
{% endif %}
<!-- START CONTENT -->
<section id="cm-content"{{ html_content_extra_class }}>
<div class="container">
{% if show_course_shortcut is not null %}
<!-- TOOLS SHOW COURSE -->
<div id="cm-tools" class="nav-tools">
{{ show_course_shortcut }}
</div>
<!-- END TOOLS SHOW COURSE -->
{% endif %}
{% block breadcrumb %}
{{ breadcrumb }}
{% endblock %}
{% block body %}
{{ content }}
{% endblock %}
</div>
</section>
<!-- END CONTENT -->
{% if show_footer == true %}
<!-- START FOOTER -->
<footer class="footer">
{% include 'layout/page_footer.tpl'|get_template %}
</footer>
<!-- END FOOTER -->
{% endif %}
</main>
<!-- END MAIN -->
{% include 'layout/modals.tpl'|get_template %}
</body>
</html>