show_header.tpl 642 B

1234567891011121314151617
  1. {% include template ~ "/layout/main_header.tpl" %}
  2. {#
  3. show_header and show_footer templates are only called when using the
  4. Display::display_header and Display::display_footer
  5. for backward compatibility we suppose that the default layout is one column
  6. which means using a div with class span12
  7. #}
  8. {% if show_header == true %}
  9. {% if plugin_content_top is not null %}
  10. <div id="plugin_content_top" class="col-md-12">
  11. {{ plugin_content_top }}
  12. </div>
  13. {% endif %}
  14. <div class="col-md-12">
  15. {% include template ~ "/layout/page_body.tpl" %}
  16. <section id="main_content">
  17. {% endif %}