Actualización
This commit is contained in:
68
main/template/default/layout/page.tpl
Normal file
68
main/template/default/layout/page.tpl
Normal file
@@ -0,0 +1,68 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user