main.tpl 507 B

1234567891011121314151617181920
  1. {% block header %}
  2. {% include "default/layout/main_header.tpl" %}
  3. {% endblock %}
  4. {% block body %}
  5. {% if show_sniff == 1 %}
  6. {% include "default/layout/sniff.tpl" %}
  7. {% endif %}
  8. {% endblock %}
  9. {% block footer %}
  10. {# Footer #}
  11. {% if show_footer == true %}
  12. </div> <!-- end of #row" -->
  13. </div> <!-- end of #main" -->
  14. <div class="push"></div>
  15. </div> <!-- end of #wrapper section -->
  16. {% endif %}
  17. {% include "default/layout/main_footer.tpl" %}
  18. {% endblock %}