footer.tpl 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <footer id="footer-section" class="sticky-footer bgfooter">
  2. <div class="container">
  3. <div class="pre-footer">
  4. {% if plugin_pre_footer is not null %}
  5. <div id="plugin_pre_footer">
  6. {{ plugin_pre_footer }}
  7. </div>
  8. {% endif %}
  9. </div>
  10. <div class="sub-footer">
  11. <div class="row">
  12. <div class="col-md-4">
  13. {% if session_teachers is not null %}
  14. <div class="session-teachers">
  15. {{ session_teachers }}
  16. </div>
  17. {% endif %}
  18. {% if teachers is not null %}
  19. <div class="teachers">
  20. {{ teachers }}
  21. </div>
  22. {% endif %}
  23. {% if plugin_footer_left is not null %}
  24. <div id="plugin_footer_left">
  25. {{ plugin_footer_left }}
  26. </div>
  27. {% endif %}
  28. </div>
  29. <div class="col-md-4">
  30. {% if plugin_footer_center is not null %}
  31. <div id="plugin_footer_center">
  32. {{ plugin_footer_center }}
  33. </div>
  34. {% endif %}
  35. </div>
  36. <div class="col-md-4">
  37. {% if administrator_name is not null %}
  38. <div class="administrator-name">
  39. {{ administrator_name }}
  40. </div>
  41. {% endif %}
  42. {% if _s.software_name is not empty %}
  43. <div class="software-name">
  44. <a href="{{_p.web}}" target="_blank">
  45. {{ "PoweredByX" | get_lang | format(_s.software_name) }}
  46. </a>&copy; {{ "now" | date("Y") }}
  47. </div>
  48. {% endif %}
  49. {% if plugin_footer_right is not null %}
  50. <div id="plugin_footer_right">
  51. {{ plugin_footer_right }}
  52. </div>
  53. {% endif %}
  54. </div>
  55. </div>
  56. </div>
  57. <div class="extra-footer">
  58. {{ footer_extra_content }}
  59. </div>
  60. </div>
  61. </footer>
  62. <div class="modal fade" id="expand-image-modal" tabindex="-1" role="dialog" aria-labelledby="expand-image-modal-title" aria-hidden="true">
  63. <div class="modal-dialog modal-lg">
  64. <div class="modal-content">
  65. <div class="modal-header">
  66. <button type="button" class="close" data-dismiss="modal" aria-label="{{ "Close" | get_lang }}"><span aria-hidden="true">&times;</span></button>
  67. <h4 class="modal-title" id="expand-image-modal-title">&nbsp;</h4>
  68. </div>
  69. <div class="modal-body">
  70. </div>
  71. </div>
  72. </div>
  73. </div>
  74. {% include template ~ '/layout/footer.js.tpl' %}
  75. {{ execution_stats }}