layout_2_col.tpl 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. {% extends app.template_style ~ "/layout/main.tpl" %}
  2. {% block body %}
  3. {# Main content #}
  4. {# Left column #}
  5. <div class="span3 menu-column">
  6. {% block left_column %}
  7. {# if user is not login show the login form #}
  8. {% if _u.logged == 0 %}
  9. {% include app.template_style ~ "/layout/login_form.tpl" %}
  10. {% endif %}
  11. {# course_session_block #}
  12. {% include app.template_style ~ "/index/course_session_block.tpl" %}
  13. {% include app.template_style ~ "/index/profile_social_block.tpl" %}
  14. {# Notice #}
  15. {% include app.template_style ~ "/index/notice_block.tpl" %}
  16. {# Help #}
  17. {% include app.template_style ~ "/index/help_block.tpl" %}
  18. {# Reservation block #}
  19. {{ reservation_block }}
  20. {# Search (xapian) #}
  21. {{ search_block }}
  22. {# Classes #}
  23. {{ classes_block }}
  24. {# Skills #}
  25. {% include app.template_style ~ "/index/skills_block.tpl" %}
  26. {# Plugin courses sidebar #}
  27. {# Plugins for footer section #}
  28. {% if plugin_menu_bottom %}
  29. <div id="plugin_menu_bottom">
  30. {{ plugin_menu_bottom }}
  31. </div>
  32. {% endif %}
  33. {% endblock %}
  34. </div>
  35. <div class="span9 content-column">
  36. {% block right_column %}
  37. {# Plugin bottom #}
  38. {% if plugin_content_top %}
  39. <div id="plugin_content_top">
  40. {{ plugin_content_top }}
  41. </div>
  42. {% endif %}
  43. {# Portal homepage #}
  44. {% if home_page_block %}
  45. <section id="homepage">
  46. <div class="row">
  47. <div class="span9">
  48. {{ home_page_block }}
  49. </div>
  50. </div>
  51. </section>
  52. {% endif %}
  53. {# ?? #}
  54. {{ sniff_notification }}
  55. {% include app.template_style ~ "/layout/page_body.tpl" %}
  56. {% if content is not null %}
  57. <section id="main_content">
  58. {{ content }}
  59. </section>
  60. {% endif %}
  61. {% include app.template_style ~ "/layout/page_post_body.tpl" %}
  62. {# Announcements #}
  63. {% if announcements_block %}
  64. <section id="announcements">
  65. {{ announcements_block }}
  66. </section>
  67. {% endif %}
  68. {# Course categories (must be turned on in the admin settings) #}
  69. {% if course_category_block %}
  70. <section id="course_category">
  71. <div class="row">
  72. <div class="span9">
  73. {{ course_category_block }}
  74. </div>
  75. </div>
  76. </section>
  77. {% endif %}
  78. {# Hot courses template #}
  79. {% include app.template_style ~ "/layout/hot_courses.tpl" %}
  80. {# Content bottom #}
  81. {% if plugin_content_bottom %}
  82. <div id="plugin_content_bottom">
  83. {{plugin_content_bottom}}
  84. </div>
  85. {% endif %}
  86. {% endblock %}
  87. &nbsp;
  88. </div>
  89. {% endblock %}