main.tpl 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <!DOCTYPE html
  2. PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  3. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  4. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="{$document_language}" lang="{$document_language}">
  5. <head>
  6. {include file="default/layout/head.tpl"}
  7. </head>
  8. <body dir="{$text_direction}">
  9. <div class="skip">
  10. <ul>
  11. <li><a href="#menu"><?php echo get_lang('WCAGGoMenu'); ?></a></li>
  12. <li><a href="#content" accesskey="2"><?php echo get_lang('WCAGGoContent'); ?></a></li>
  13. </ul>
  14. </div>
  15. <div id="wrapper">
  16. {* Bug and help notifications *}
  17. <ul id="navigation">
  18. {$help_content}
  19. {$bug_notification_link}
  20. </ul>
  21. {block name="header"}{/block}
  22. <div id="main">
  23. <div id="submain">
  24. {block name="body"}{/block}
  25. <div class="clear">&nbsp;</div> <!-- 'clearing' div to make sure that footer stays below the main and right column sections -->
  26. </div> <!-- end of #main" started at the end of banner.inc.php -->
  27. </div> <!-- end of #main" started at the end of banner.inc.php -->
  28. <div class="push"></div>
  29. </div> <!-- end of #wrapper section -->
  30. {block name="footer"}{/block}
  31. </body>
  32. </html>