show_footer.tpl 749 B

123456789101112131415161718192021222324
  1. {#
  2. show_header and show_footer templates are only called when using the Display::display_header and Display::display_footer
  3. for backward compatibility we suppose that the default layout is one column which means using a div with class span12
  4. #}
  5. {% if app.template.show_header == true %}
  6. </section>
  7. </div>
  8. {% endif %}
  9. {# Plugin bottom #}
  10. {% if plugin_content_bottom is not null %}
  11. <div id="plugin_content_bottom" class="span12">
  12. {{ plugin_content_bottom}}
  13. </div>
  14. {% endif %}
  15. {% if show_footer == true %}
  16. </div> <!-- end of #row" -->
  17. </div> <!-- end of #main" -->
  18. <div class="push"></div>
  19. </div> <!-- end of #wrapper section -->
  20. {% endif %}
  21. {% include app.template_style ~ "/layout/main_footer.tpl" %}