footer.tpl 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. copyright &copy; minedu{{ "now"|date("Y") }}
  40. </div>
  41. {# Plugins for footer section #}
  42. {% if plugin_footer_right is not null %}
  43. <div id="plugin_footer_right">
  44. {{ plugin_footer_right }}
  45. </div>
  46. {% endif %}
  47. &nbsp;
  48. </div><!-- end of #footer_right -->
  49. </div><!-- end of #row -->
  50. </div><!-- end of #container -->
  51. </footer>
  52. {# Extra footer configured in admin section, only shown to non-admins #}
  53. {{ footer_extra_content }}
  54. <div class="modal fade" id="expand-image-modal" tabindex="-1" role="dialog" aria-labelledby="expand-image-modal-title" aria-hidden="true">
  55. <div class="modal-dialog modal-lg">
  56. <div class="modal-content">
  57. <div class="modal-header">
  58. <button type="button" class="close" data-dismiss="modal" aria-label="{{ "Close" | get_lang }}"><span aria-hidden="true">&times;</span></button>
  59. <h4 class="modal-title" id="expand-image-modal-title">&nbsp;</h4>
  60. </div>
  61. <div class="modal-body">
  62. </div>
  63. </div>
  64. </div>
  65. </div>
  66. {% include template ~ '/layout/footer.js.tpl' %}
  67. {{ execution_stats }}