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.
96 lines
2.5 KiB
96 lines
2.5 KiB
{% extends template ~ "/layout/page.tpl" %}
|
|
|
|
{% block body %}
|
|
{% if plugin_main_top %}
|
|
<div id="plugin_main_top" class="col-md-12">
|
|
{{ plugin_main_top }}
|
|
</div>
|
|
{% endif %}
|
|
<div class="col-md-3 menu-column">
|
|
{% if plugin_menu_top %}
|
|
<div id="plugin_menu_top">
|
|
{{plugin_menu_top}}
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% include template ~ "/layout/login_form.tpl" %}
|
|
|
|
{% if _u.logged == 1 %}
|
|
{{ user_image_block }}
|
|
{% endif %}
|
|
|
|
{{ profile_block }}
|
|
{{ course_block }}
|
|
{{ teacher_block }}
|
|
{{ skills_block }}
|
|
{{ certificates_search_block }}
|
|
{{ notice_block }}
|
|
{{ help_block }}
|
|
{{ navigation_course_links }}
|
|
{{ search_block }}
|
|
{{ classes_block }}
|
|
|
|
{% if plugin_menu_bottom %}
|
|
<div id="plugin_menu_bottom">
|
|
{{ plugin_menu_bottom }}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
<div class="col-md-9">
|
|
{% if plugin_content_top %}
|
|
<div id="plugin_content_top">
|
|
{{ plugin_content_top }}
|
|
</div>
|
|
{% endif %}
|
|
{% if home_page_block %}
|
|
<section id="homepage-home">
|
|
{{ home_page_block }}
|
|
</section>
|
|
{% endif %}
|
|
|
|
{{ sniff_notification }}
|
|
|
|
{% block page_body %}
|
|
{% include template ~ "/layout/page_body.tpl" %}
|
|
{% endblock %}
|
|
|
|
{% if welcome_to_course_block %}
|
|
<section id="homepage-course">
|
|
{{ welcome_to_course_block }}
|
|
</section>
|
|
{% endif %}
|
|
|
|
{% block content %}
|
|
{% if content is not null %}
|
|
<section id="page-content" class="{{ course_history_page }}">
|
|
{{ content }}
|
|
</section>
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% if announcements_block %}
|
|
<section id="homepage-announcements">
|
|
{{ announcements_block }}
|
|
</section>
|
|
{% endif %}
|
|
|
|
{% if course_category_block %}
|
|
<section id="homepage-course-category">
|
|
{{ course_category_block }}
|
|
</section>
|
|
{% endif %}
|
|
|
|
{% include template ~ "/layout/hot_courses.tpl" %}
|
|
|
|
{% if plugin_content_bottom %}
|
|
<div id="plugin_content_bottom">
|
|
{{plugin_content_bottom}}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
{% if plugin_main_bottom %}
|
|
<div id="plugin_main_bottom" class="col-md-12">
|
|
{{ plugin_main_bottom }}
|
|
</div>
|
|
{% endif %}
|
|
{% endblock %}
|
|
|