show_header.tpl 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <!DOCTYPE html>
  2. <!--[if lt IE 7]> <html lang="{{ document_language }}" class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
  3. <!--[if IE 7]> <html lang="{{ document_language }}" class="no-js lt-ie9 lt-ie8"> <![endif]-->
  4. <!--[if IE 8]> <html lang="{{ document_language }}" class="no-js lt-ie9"> <![endif]-->
  5. <!--[if gt IE 8]><!-->
  6. <html lang="{{ document_language }}" class="no-js"> <!--<![endif]-->
  7. <head>
  8. {% block head %}
  9. {% include template ~ "/layout/head.tpl" %}
  10. {% endblock %}
  11. </head>
  12. <body dir="{{ text_direction }}" class="{{ section_name }} {{ login_class }}">
  13. <noscript>{{ "NoJavascript"|get_lang }}</noscript>
  14. {% if show_header == true %}
  15. <div class="wrap">
  16. {% if displayCookieUsageWarning == true %}
  17. <!-- Display Cookies validation -->
  18. <div class="toolbar-cookie alert-warning">
  19. <form onSubmit="$(this).toggle('slow')" action="" method="post">
  20. <input value=1 type="hidden" name="acceptCookies"/>
  21. <div class="cookieUsageValidation">
  22. {{ "YouAcceptCookies" | get_lang }}
  23. <span style="margin-left:20px;" onclick="$(this).next().toggle('slow'); $(this).toggle('slow')">
  24. ({{"More" | get_lang }})
  25. </span>
  26. <div style="display:none; margin:20px 0;">
  27. {{ "HelpCookieUsageValidation" | get_lang}}
  28. </div>
  29. <span style="margin-left:20px;" onclick="$(this).parent().parent().submit()">
  30. ({{"Accept" | get_lang }})
  31. </span>
  32. </div>
  33. </form>
  34. </div>
  35. {% endif %}
  36. {% include template ~ "/layout/page_header.tpl" %}
  37. {% if show_course_shortcut is not null %}
  38. <div class="nav-tools">
  39. {{ show_course_shortcut }}
  40. </div>
  41. {% endif %}
  42. <section id="content-section">
  43. <div class="container">
  44. {% block breadcrumb %}
  45. <div id="page-breadcrumb">
  46. {{ breadcrumb }}
  47. </div>
  48. {% endblock %}
  49. {{ flash_messages }}
  50. {% endif %}