show_footer.tpl 702 B

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