layout_1_col.tpl 953 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {extends file="default/layout/main.tpl"}
  2. {* Header *}
  3. {block name="header"}
  4. {include file="default/layout/main_header.tpl"}
  5. {/block}
  6. {* 1 column *}
  7. {block name=body}
  8. {* Plugin top *}
  9. {if !empty($plugin_content_top)}
  10. <div id="plugin_content_top" class="span12">
  11. {$plugin_content_top}
  12. </div>
  13. {/if}
  14. <div class="span12">
  15. {include file="default/layout/page_body.tpl"}
  16. {if !empty($content)}
  17. <section id="main_content">
  18. {$content}
  19. </section>
  20. {/if}
  21. &nbsp;
  22. </div>
  23. {* Plugin bottom *}
  24. {if !empty($plugin_content_bottom)}
  25. <div id="plugin_content_bottom" class="span12">
  26. {$plugin_content_bottom}
  27. </div>
  28. {/if}
  29. {/block}
  30. {* Footer *}
  31. {block name=footer}
  32. {if $show_footer == 1}
  33. {include file="default/layout/main_footer.tpl"}
  34. {/if}
  35. {/block}