footer.tpl 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <footer> <!-- start of #footer section -->
  2. <div class="container">
  3. <div class="row">
  4. <div id="footer_left" class="col-md-4">
  5. {% if session_teachers is not null %}
  6. <div id="session_teachers">
  7. {{ session_teachers }}
  8. </div>
  9. {% endif %}
  10. {% if teachers is not null %}
  11. <div id="teachers">
  12. {{ teachers }}
  13. </div>
  14. {% endif %}
  15. {# Plugins for footer section #}
  16. {% if plugin_footer_left is not null %}
  17. <div id="plugin_footer_left">
  18. {{ plugin_footer_left }}
  19. </div>
  20. {% endif %}
  21. &nbsp;
  22. </div>
  23. <div id="footer_center" class="col-md-4">
  24. {# Plugins for footer section #}
  25. {% if plugin_footer_center is not null %}
  26. <div id="plugin_footer_center">
  27. {{ plugin_footer_center }}
  28. </div>
  29. {% endif %}
  30. &nbsp;
  31. </div>
  32. <div id="footer_right" class="col-md-4">
  33. {% if administrator_name is not null %}
  34. <div id="admin_name">
  35. {{ administrator_name }}
  36. </div>
  37. {% endif %}
  38. <div id="software_name">
  39. <a href="{{_p.web}}" target="_blank">{{ "PoweredByX" |get_lang | format(_s.software_name) }}</a>
  40. &copy; {{ "now"|date("Y") }}
  41. </div>
  42. {# Plugins for footer section #}
  43. {% if plugin_footer_right is not null %}
  44. <div id="plugin_footer_right">
  45. {{ plugin_footer_right }}
  46. </div>
  47. {% endif %}
  48. &nbsp;
  49. </div><!-- end of #footer_right -->
  50. </div><!-- end of #row -->
  51. </div><!-- end of #container -->
  52. </footer>
  53. {# Extra footer configured in admin section, only shown to non-admins #}
  54. {{ footer_extra_content }}
  55. <div class="modal fade" id="expand-image-modal" tabindex="-1" role="dialog" aria-labelledby="expand-image-modal-title" aria-hidden="true">
  56. <div class="modal-dialog modal-lg">
  57. <div class="modal-content">
  58. <div class="modal-header">
  59. <button type="button" class="close" data-dismiss="modal" aria-label="{{ "Close" | get_lang }}"><span aria-hidden="true">&times;</span></button>
  60. <h4 class="modal-title" id="expand-image-modal-title">&nbsp;</h4>
  61. </div>
  62. <div class="modal-body">
  63. </div>
  64. </div>
  65. </div>
  66. </div>
  67. {% include template ~ '/layout/footer.js.tpl' %}
  68. {{ execution_stats }}