template.html 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  5. <title><?=__('User stats') ?></title>
  6. <link href="<?=zbs_GetCurrentSkinPath(); ?>style.css" rel="stylesheet" type="text/css" media="screen" />
  7. <?=zbs_CustomBackground(); ?>
  8. </head>
  9. <body>
  10. <div id="wrapper">
  11. <div id="header-wrapper">
  12. <div id="header" class="container">
  13. <div id="logo">
  14. <h1><?=zbs_IspLogoShow();?> <a href="index.php"><?=__('User stats') ?></a></h1>
  15. </div>
  16. <div id="menu">
  17. <ul>
  18. <div style="float:left;"> <?=zbs_LangSelector();?></div> <div style="float:left;"><?=zbs_LogoutForm(true);?></div>
  19. </ul>
  20. </div>
  21. </div>
  22. </div>
  23. <!-- end #header -->
  24. <div id="page">
  25. <div id="content">
  26. <div class="post">
  27. <?=$ContentContainer; ?>
  28. </div>
  29. </div>
  30. <!-- end #content -->
  31. <div id="sidebar">
  32. <ul>
  33. <li>
  34. <ul>
  35. <?=zbs_ModulesMenuShow (true); ?>
  36. </ul>
  37. </li>
  38. </ul>
  39. </div>
  40. <!-- end #sidebar -->
  41. <div style="clear: both;">&nbsp;</div>
  42. </div>
  43. <!-- end #page -->
  44. <div id="featured-content">
  45. <div id="column1">
  46. </div>
  47. <div id="column2">
  48. </div>
  49. <div id="column3">
  50. </div>
  51. </div>
  52. </div>
  53. <div id="footer">
  54. <p>
  55. <?=zbs_CopyrightsShow();?>
  56. </p>
  57. </div>
  58. <!-- end #footer -->
  59. </body>
  60. </html>