footer.tpl 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {# Plugins for pref footer section #}
  2. <footer class="sticky-footer"> <!-- start of #footer section -->
  3. <div class="pre-footer">
  4. {% if plugin_pre_footer is not null %}
  5. <div id="plugin_pre_footer" class="text-center">
  6. {{ plugin_pre_footer }}
  7. </div>
  8. {% endif %}
  9. </div>
  10. <div class="sub-footer">
  11. <div class="container">
  12. <div class="row">
  13. <div id="footer_left" class="col-md-9">
  14. <div class="partners">
  15. <a href="http://www.bosch-stiftung.de" target="_blank">
  16. <img src="{{ _p.web_css_theme }}images/rbs_logo_rgb.png"/>
  17. </a>
  18. <a href="http://www.cavilam.com" target="_blank">
  19. <img src="{{ _p.web_css_theme }}images/logo_cavilam.png"/>
  20. </a>
  21. <a href="https://www.cdc.de/" target="_blank">
  22. <img src="{{ _p.web_css_theme }}images/carlduisberg.png"/>
  23. </a>
  24. </div>
  25. </div>
  26. <div id="footer_right" class="col-md-3">
  27. {% if session_teachers is not null %}
  28. <div class="session-teachers">
  29. {{ session_teachers }}
  30. </div>
  31. {% endif %}
  32. {% if teachers is not null %}
  33. <div id="teachers">
  34. {{ teachers }}
  35. </div>
  36. {% endif %}
  37. {% if administrator_name is not null %}
  38. <div id="admin_name">
  39. <a href="{{ "URLOFAJ" | get_lang }}">{{ "OFAJ" | get_lang }}</a>
  40. </div>
  41. {% endif %}
  42. <div id="software_name">
  43. <a href="{{_p.web}}" target="_blank">{{ "PoweredByX" |get_lang | format(_s.software_name) }}</a>
  44. &copy; {{ "now"|date("Y") }}
  45. </div>
  46. <div id="mentions_legales">
  47. <a href="{{_p.web}}{{ "MentionsLegalesLink" |get_lang }}" target="_blank">{{ "MentionsLegales" |get_lang }}</a> - <a href="{{_p.web}}{{ "CGULink" |get_lang }}" target="_blank">{{ "CGU" |get_lang }}</a>
  48. </div>
  49. &nbsp;
  50. </div><!-- end of #footer_right -->
  51. </div><!-- end of #row -->
  52. <div class="extra-footer">
  53. {{ footer_extra_content }}
  54. </div>
  55. </div><!-- end of #container -->
  56. </div>
  57. </footer>
  58. <div class="modal fade" id="expand-image-modal" tabindex="-1" role="dialog" aria-labelledby="expand-image-modal-title" aria-hidden="true">
  59. <div class="modal-dialog modal-lg">
  60. <div class="modal-content">
  61. <div class="modal-header">
  62. <button type="button" class="close" data-dismiss="modal" aria-label="{{ "Close" | get_lang }}"><span aria-hidden="true">&times;</span></button>
  63. <h4 class="modal-title" id="expand-image-modal-title">&nbsp;</h4>
  64. </div>
  65. <div class="modal-body">
  66. </div>
  67. </div>
  68. </div>
  69. </div>
  70. {{ execution_stats }}