page_footer.tpl 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <div class="container">
  2. {% if plugin_pre_footer is not null %}
  3. <div id="plugin_pre_footer">
  4. {{ plugin_pre_footer }}
  5. </div>
  6. {% endif %}
  7. <section class="sub-footer">
  8. <div class="row">
  9. <div class="col-xs-12 col-md-4">
  10. {% if session_teachers is not null %}
  11. <div class="session-teachers">
  12. {{ session_teachers }}
  13. </div>
  14. {% endif %}
  15. {% if teachers is not null %}
  16. <div class="teachers">
  17. {{ teachers }}
  18. </div>
  19. {% endif %}
  20. {% if plugin_footer_left is not null %}
  21. <div id="plugin_footer_left">
  22. {{ plugin_footer_left }}
  23. </div>
  24. {% endif %}
  25. </div>
  26. <div class="col-xs-12 col-md-4">
  27. {% if plugin_footer_center is not null %}
  28. <div id="plugin_footer_center">
  29. {{ plugin_footer_center }}
  30. </div>
  31. {% endif %}
  32. </div>
  33. <div class="col-xs-12 col-md-4 text-right">
  34. {% if administrator_name is not null %}
  35. <div class="administrator-name">
  36. {{ administrator_name }}
  37. </div>
  38. {% endif %}
  39. {% if _s.software_name is not empty %}
  40. <div class="software-name">
  41. <a href="{{_p.web}}" target="_blank">
  42. {{ "PoweredByX" |get_lang | format(_s.software_name) }}
  43. </a>&copy; {{ "now"|date("Y") }}
  44. </div>
  45. {% endif %}
  46. {% if plugin_footer_right is not null %}
  47. <div id="plugin_footer_right">
  48. {{ plugin_footer_right }}
  49. </div>
  50. {% endif %}
  51. </div>
  52. </div>
  53. {% if footer_extra_content %}
  54. {{ footer_extra_content }}
  55. {% endif %}
  56. </section>
  57. </div>
  58. {{ execution_stats }}