|
@@ -6,58 +6,72 @@
|
|
|
<html lang="{{ document_language }}" class="no-js"> <!--<![endif]-->
|
|
|
<head>
|
|
|
{% block head %}
|
|
|
-{% include 'layout/head.tpl'|get_template %}
|
|
|
+ {% include 'layout/head.tpl'|get_template %}
|
|
|
{% endblock %}
|
|
|
</head>
|
|
|
-<body dir="{{ text_direction }}" class="{{ section_name }} {{ login_class }}">
|
|
|
-<noscript>{{ "NoJavascript"|get_lang }}</noscript>
|
|
|
-<div class="wrap">
|
|
|
- {% if displayCookieUsageWarning == true %}
|
|
|
- <!-- Display Cookies validation -->
|
|
|
- <div class="toolbar-cookie alert-warning">
|
|
|
- <form onSubmit="$(this).toggle('slow')" action="" method="post">
|
|
|
- <input value=1 type="hidden" name="acceptCookies"/>
|
|
|
- <div class="cookieUsageValidation">
|
|
|
- {{ "YouAcceptCookies" | get_lang }}
|
|
|
- <span style="margin-left:20px;" onclick="$(this).next().toggle('slow'); $(this).toggle('slow')">
|
|
|
- ({{"More" | get_lang }})
|
|
|
- </span>
|
|
|
- <div style="display:none; margin:20px 0;">
|
|
|
- {{ "HelpCookieUsageValidation" | get_lang}}
|
|
|
- </div>
|
|
|
- <span style="margin-left:20px;" onclick="$(this).parent().parent().submit()">
|
|
|
- ({{"Accept" | get_lang }})
|
|
|
- </span>
|
|
|
+<body>
|
|
|
+ <!-- START MAIN -->
|
|
|
+ <main id="main" dir="{{ text_direction }}" class="{{ section_name }} {{ login_class }}">
|
|
|
+ <noscript>{{ "NoJavascript"|get_lang }}</noscript>
|
|
|
+ {% if show_course_shortcut is not null %}
|
|
|
+ <!-- TOOLS SHOW COURSE -->
|
|
|
+ <div id="cm-tools" class="nav-tools">
|
|
|
+ {{ show_course_shortcut }}
|
|
|
</div>
|
|
|
- </form>
|
|
|
- </div>
|
|
|
- {% endif %}
|
|
|
+ <!-- END TOOLS SHOW COURSE -->
|
|
|
+ {% endif %}
|
|
|
+ {% if displayCookieUsageWarning == true %}
|
|
|
+ <!-- START DISPLAY COOKIES VALIDATION -->
|
|
|
+ <div class="toolbar-cookie alert-warning">
|
|
|
+ <form onSubmit="$(this).toggle('slow')" action="" method="post">
|
|
|
+ <input value=1 type="hidden" name="acceptCookies"/>
|
|
|
+ <div class="cookieUsageValidation">
|
|
|
+ {{ "YouAcceptCookies" | get_lang }}
|
|
|
+ <span style="margin-left:20px;" onclick="$(this).next().toggle('slow'); $(this).toggle('slow')">
|
|
|
+ ({{"More" | get_lang }})
|
|
|
+ </span>
|
|
|
+ <div style="display:none; margin:20px 0;">
|
|
|
+ {{ "HelpCookieUsageValidation" | get_lang}}
|
|
|
+ </div>
|
|
|
+ <span style="margin-left:20px;" onclick="$(this).parent().parent().submit()">
|
|
|
+ ({{"Accept" | get_lang }})
|
|
|
+ </span>
|
|
|
+ </div>
|
|
|
+ </form>
|
|
|
+ </div>
|
|
|
+ <!-- END DISPLAY COOKIES VALIDATION -->
|
|
|
+ {% endif %}
|
|
|
+
|
|
|
+ <!-- START HEADER -->
|
|
|
+ <header id="cm-header">
|
|
|
+ {% if show_header == true %}
|
|
|
+ {% include 'layout/page_header.tpl'|get_template %}
|
|
|
+ {% endif %}
|
|
|
+ </header>
|
|
|
+ <!-- END HEADER -->
|
|
|
|
|
|
- {% if show_header == true %}
|
|
|
- {% include 'layout/page_header.tpl'|get_template %}
|
|
|
- {% endif %}
|
|
|
- {% if show_course_shortcut is not null %}
|
|
|
- <div class="nav-tools">
|
|
|
- {{ show_course_shortcut }}
|
|
|
- </div>
|
|
|
- {% endif %}
|
|
|
- <section id="content-section">
|
|
|
- <div class="container">
|
|
|
- {% block breadcrumb %}
|
|
|
- <div id="page-breadcrumb">
|
|
|
- {{ breadcrumb }}
|
|
|
+ <!-- START CONTENT -->
|
|
|
+ <section id="cm-content">
|
|
|
+ <div class="container">
|
|
|
+ {% block breadcrumb %}
|
|
|
+ {{ breadcrumb }}
|
|
|
+ {% endblock %}
|
|
|
+ {% block body %}
|
|
|
+ {{ content }}
|
|
|
+ {% endblock %}
|
|
|
</div>
|
|
|
- {% endblock %}
|
|
|
+ </section>
|
|
|
+ <!-- END CONTENT -->
|
|
|
|
|
|
- {% block body %}
|
|
|
- {{ content }}
|
|
|
- {% endblock %}
|
|
|
- </div>
|
|
|
- </section>
|
|
|
+ <!-- START FOOTER -->
|
|
|
+ <footer class="footer">
|
|
|
+ {% if show_footer == true %}
|
|
|
+ {% include 'layout/page_footer.tpl'|get_template %}
|
|
|
+ {% endif %}
|
|
|
+ </footer>
|
|
|
+ <!-- END FOOTER -->
|
|
|
|
|
|
- {% if show_footer == true %}
|
|
|
- {% include 'layout/page_footer.tpl'|get_template %}
|
|
|
- {% endif %}
|
|
|
- </div>
|
|
|
- </body>
|
|
|
+ </main>
|
|
|
+ <!-- END MAIN -->
|
|
|
+</body>
|
|
|
</html>
|