page_header.tpl 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <div id="navigation" class="notification-panel">
  2. {{ help_content }}
  3. {{ bug_notification }}
  4. </div>
  5. {% block topbar %}
  6. {% include 'layout/topbar.tpl'|get_template %}
  7. {% endblock %}
  8. {% if header_extra_content is not null %}
  9. {{ header_extra_content }}
  10. {% endif %}
  11. <div class="container">
  12. <div class="row">
  13. <div class="col-xs-12 col-md-3">
  14. <div class="logo">
  15. {{ logo }}
  16. </div>
  17. </div>
  18. <div class="col-xs-12 col-md-9">
  19. <div class="row">
  20. <div class="col-sm-4">
  21. {% if plugin_header_left is not null %}
  22. <div id="plugin_header_left">
  23. {{ plugin_header_left }}
  24. </div>
  25. {% endif %}
  26. </div>
  27. <div class="col-sm-3">
  28. {% if plugin_header_center is not null %}
  29. <div id="plugin_header_center">
  30. {{ plugin_header_center }}
  31. </div>
  32. {% endif %}
  33. </div>
  34. <div class="col-sm-5">
  35. <ol class="header-ol">
  36. {% if plugin_header_right is not null %}
  37. <li>
  38. <div id="plugin_header_right">
  39. {{ plugin_header_right }}
  40. </div>
  41. </li>
  42. {% endif %}
  43. <li>
  44. <div class="section-notifications">
  45. {% if _u.logged == 1 and not user_in_anon_survey %}
  46. <ul id="notifications" class="nav nav-pills pull-right">
  47. </ul>
  48. {% endif %}
  49. </div>
  50. </li>
  51. <li>
  52. {{ accessibility }}
  53. </li>
  54. </ol>
  55. </div>
  56. </div>
  57. </div>
  58. </div>
  59. </div>
  60. {% block menu %}
  61. {% include 'layout/menu.tpl'|get_template %}
  62. {% endblock %}
  63. {% include 'layout/course_navigation.tpl'|get_template %}