1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- {% extends template ~ "/layout/page.tpl" %}
- {% block body %}
- <div class="row">
- {% 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 %}
- </div>
- {% endblock %}
|