layout_1_col.tpl 937 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {% extends app.template_style ~ "/layout/main.tpl" %}
  2. {# 1 column #}
  3. {% block body %}
  4. {# Plugin top #}
  5. {% if plugin_content_top %}
  6. <div id="plugin_content_top" class="span12">
  7. {{ plugin_content_top}}
  8. </div>
  9. {% endif %}
  10. {% if app.template.show_header == true %}
  11. <div class="span12">
  12. {% endif %}
  13. {% include app.template_style ~ "/layout/page_body.tpl" %}
  14. {% block content %}
  15. {% if content is not null %}
  16. <section id="main_content">
  17. {{ content }}
  18. </section>
  19. {% endif %}
  20. {% endblock %}
  21. {% if app.template.show_header == true %}
  22. &nbsp;
  23. </div>
  24. {% endif %}
  25. {# Plugin bottom #}
  26. {% if plugin_content_bottom %}
  27. <div id="plugin_content_bottom" class="span12">
  28. {{ plugin_content_bottom }}
  29. </div>
  30. {% endif %}
  31. {% endblock %}