layout_1_col.tpl 921 B

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