parent
516feb70a3
commit
150e827062
@ -1,5 +0,0 @@ |
||||
{% extends app.template_style ~ '/layout/layout_1_col.tpl' %} |
||||
{% block content %} |
||||
{{ error_code }} - {{ error_message }} |
||||
{{ content }} |
||||
{% endblock %} |
@ -1,40 +0,0 @@ |
||||
{% extends app.template_style ~ "/layout/main.tpl" %} |
||||
|
||||
{# 1 column #} |
||||
{% block body %} |
||||
<h1>My custom template!!!</h1> |
||||
|
||||
{# Plugin top #} |
||||
{% if plugin_content_top %} |
||||
<div id="plugin_content_top" class="span12"> |
||||
{{ plugin_content_top}} |
||||
</div> |
||||
{% endif %} |
||||
|
||||
{% if show_header == true %} |
||||
<div class="span12"> |
||||
{% endif %} |
||||
|
||||
{% include app.template_style ~ "/layout/page_body.tpl" %} |
||||
|
||||
{% block content %} |
||||
{% if content is not null %} |
||||
<section id="main_content"> |
||||
{{ content }} |
||||
</section> |
||||
{% endif %} |
||||
{% endblock %} |
||||
|
||||
{% if show_header == true %} |
||||
|
||||
</div> |
||||
{% endif %} |
||||
|
||||
|
||||
{# Plugin bottom #} |
||||
{% if plugin_content_bottom %} |
||||
<div id="plugin_content_bottom" class="span12"> |
||||
{{ plugin_content_bottom }} |
||||
</div> |
||||
{% endif %} |
||||
{% endblock %} |
@ -1,129 +0,0 @@ |
||||
{% extends app.template_style ~ "/layout/main.tpl" %} |
||||
|
||||
{% block body %} |
||||
{# Main content #} |
||||
|
||||
{# Right column #} |
||||
<div class="span3 menu-column"> |
||||
{% if plugin_menu_top %} |
||||
<div id="plugin_menu_top"> |
||||
{{plugin_menu_top}} |
||||
</div> |
||||
{% endif %} |
||||
|
||||
{# if user is not login show the login form #} |
||||
{% if _u.logged == 0 %} |
||||
{% include app.template_style ~ "/layout/login_form.tpl" %} |
||||
{% endif %} |
||||
|
||||
{# course_session_block #} |
||||
{% include app.template_style ~ "/index/course_session_block.tpl" %} |
||||
|
||||
{# User picture #} |
||||
{% include app.template_style ~ "/index/user_image_block.tpl" %} |
||||
|
||||
{# User Profile links #} |
||||
{% include app.template_style ~ "/index/profile_block.tpl" %} |
||||
|
||||
{% include app.template_style ~ "/index/profile_social_block.tpl" %} |
||||
|
||||
{# Course block - admin #} |
||||
{% include app.template_style ~ "/index/course_block.tpl" %} |
||||
|
||||
{# Course block - teacher #} |
||||
{% include app.template_style ~ "/index/teacher_block.tpl" %} |
||||
|
||||
{# Notice #} |
||||
{% include app.template_style ~ "/index/notice_block.tpl" %} |
||||
|
||||
{# Help #} |
||||
{% include app.template_style ~ "/index/help_block.tpl" %} |
||||
|
||||
{# Links that are not added in the tabs #} |
||||
{{ navigation_course_links }} |
||||
|
||||
{# Reservation block #} |
||||
{{ reservation_block }} |
||||
|
||||
{# Search (xapian) #} |
||||
{{ search_block }} |
||||
|
||||
{# Classes #} |
||||
{{ classes_block }} |
||||
|
||||
{# Skills #} |
||||
{% include app.template_style ~ "/index/skills_block.tpl" %} |
||||
|
||||
{# Plugin courses sidebar #} |
||||
{# Plugins for footer section #} |
||||
|
||||
{% if plugin_menu_bottom %} |
||||
<div id="plugin_menu_bottom"> |
||||
{{ plugin_menu_bottom }} |
||||
</div> |
||||
{% endif %} |
||||
</div> |
||||
<div class="span9 content-column"> |
||||
|
||||
{# Plugin bottom #} |
||||
{% if plugin_content_top %} |
||||
<div id="plugin_content_top"> |
||||
{{ plugin_content_top }} |
||||
</div> |
||||
{% endif %} |
||||
|
||||
{# Portal homepage #} |
||||
{% if home_page_block %} |
||||
<section id="homepage"> |
||||
<div class="row"> |
||||
<div class="span9"> |
||||
{{ home_page_block }} |
||||
</div> |
||||
</div> |
||||
</section> |
||||
{% endif %} |
||||
|
||||
{# ?? #} |
||||
{{ sniff_notification }} |
||||
|
||||
{% include app.template_style ~ "/layout/page_body.tpl" %} |
||||
|
||||
{% if content is not null %} |
||||
<section id="main_content"> |
||||
{{ content }} |
||||
</section> |
||||
{% endif %} |
||||
|
||||
{% include app.template_style ~ "/layout/page_post_body.tpl" %} |
||||
|
||||
{# Announcements #} |
||||
{% if announcements_block %} |
||||
<section id="announcements"> |
||||
{{ announcements_block }} |
||||
</section> |
||||
{% endif %} |
||||
|
||||
{# Course categories (must be turned on in the admin settings) #} |
||||
{% if course_category_block %} |
||||
<section id="course_category"> |
||||
<div class="row"> |
||||
<div class="span9"> |
||||
{{ course_category_block }} |
||||
</div> |
||||
</div> |
||||
</section> |
||||
{% endif %} |
||||
|
||||
{# Hot courses template #} |
||||
{% include app.template_style ~ "/layout/hot_courses.tpl" %} |
||||
|
||||
{# Content bottom #} |
||||
{% if plugin_content_bottom %} |
||||
<div id="plugin_content_bottom"> |
||||
{{plugin_content_bottom}} |
||||
</div> |
||||
{% endif %} |
||||
|
||||
</div> |
||||
|
||||
{% endblock %} |
@ -1,25 +0,0 @@ |
||||
{# This template is NOT used in chamilo 1.9 #} |
||||
{% extends app.template_style ~ "/layout/main.tpl" %} |
||||
|
||||
{% block body %} |
||||
<div id="maincontent" class="maincontent"> |
||||
{{ plugin_courses_block}} |
||||
{{ home_page_block}} |
||||
{{ message}} |
||||
{{ content}} |
||||
{{ announcements_block}} |
||||
</div> |
||||
|
||||
<div id="menu-wrapper"> |
||||
{{ login_block}} |
||||
{{ profile_block}} |
||||
{{ account_block}} |
||||
{{ teacher_block}} |
||||
{{ notice_block}} |
||||
{{ navigation_course_links}} |
||||
{{ plugin_courses_right_block}} |
||||
{{ reservation_block}} |
||||
{{ search_block}} |
||||
{{ classes_block}} |
||||
</div> |
||||
{% endblock %} |
@ -1 +0,0 @@ |
||||
This template is just an extension of the "default" template. Just use it as a starting point when developing a new template. It will save you time. |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/admin/questionmanager/edit_category.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/admin/questionmanager/edit_question.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/admin/questionmanager/question_categories.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/admin/questionmanager/questionmanager.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/admin/questionmanager/questions.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/admin/questionmanager/show_category.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/admin/settings_index.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/agenda/month.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/auth/categories_list.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/auth/courses_categories.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/auth/courses_list.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/auth/layout.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/course_description/edit.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/course_description/index.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/course_description/upload.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/create_course/add_course.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/question/edit_question.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/question/show_question.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/exercise/question_pool.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/export/table_pdf.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/form/form_custom_template.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/glossary/edit.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/glossary/header.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/glossary/index.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/glossary/javascript.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/glossary/list.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/glossary/table.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/glossary/upload.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/index/course_block.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/index/course_session_block.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/index/help_block.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/index/navigation_block.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/index/notice_block.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/index/profile_block.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/index/profile_social_block.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/index/skills_block.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/index/teacher_block.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/index/user_image_block.tpl" %} |
@ -1 +0,0 @@ |
||||
{{ content }} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/layout/block_menu.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/layout/bread.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/layout/course_navigation.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/layout/error.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/layout/footer.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/layout/head.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/layout/hot_course_item.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/layout/hot_course_item_popup.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/layout/hot_courses.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/layout/layout_1_col.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/layout/layout_2_col.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/layout/layout_3_col.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/layout/login_form.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/layout/main.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/layout/main_footer.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/layout/main_header.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/layout/menu.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/layout/no_layout.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/layout/page_body.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/layout/page_post_body.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/layout/show_footer.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/layout/show_header.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/layout/sniff.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/layout/social_layout.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/layout/topbar.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/layout/welcome_to_course.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/learnpath/impress.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/learnpath/subscribe_users.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/link/edit_category.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/link/edit_link.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/link/index.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/mail/exercise/end_exercise_notification.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/mail/layout.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/mail/sample/sample.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/mail_editor/email_link.js.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/notebook/edit.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/notebook/header.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/notebook/index.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/notebook/javascript.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/notebook/list.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/notebook/upload.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/pages/add.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/pages/listing.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/pages/show.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/skill/profile.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/skill/profile_item.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/skill/skill_ranking.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/skill/skill_tree.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/skill/skill_tree_student.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/skill/skill_wheel.js.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/skill/skill_wheel.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/skill/skill_wheel_student.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/skill/user_skills.tpl" %} |
@ -1 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/userportal/course_item.tpl" %} |
@ -1,2 +0,0 @@ |
||||
{% extends app.template_style ~ "/../default/userportal/course_page.tpl" %} |
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue