main.tpl 480 B

12345678910111213141516171819
  1. {% block header %}
  2. {% include template ~ "/layout/main_header.tpl" %}
  3. {% endblock %}
  4. {% block body %}
  5. {% if show_sniff == 1 %}
  6. {% include template ~ "/layout/sniff.tpl" %}
  7. {% endif %}
  8. {% endblock %}
  9. {% block footer %}
  10. {# Footer #}
  11. {% if show_footer == true %}
  12. </div> <!-- end of #col" -->
  13. </div> <!-- end of #row" -->
  14. </div> <!-- end of #container" -->
  15. {% endif %}
  16. {% include template ~ "/layout/main_footer.tpl" %}
  17. {% endblock %}