template.html 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="google" content="notranslate" />
  6. <link rel="icon" type="image/x-icon" href="<?=$system->getSkinPath(); ?>assets/img/favicon.ico">
  7. <link rel="apple-touch-icon" sizes="76x76" href="<?=$system->getSkinPath(); ?>assets/img/apple-icon.png">
  8. <link rel="icon" type="shortcut icon" href="<?=$system->getSkinPath(); ?>assets/img/favicon.png">
  9. <link rel="manifest" type="application/json" href="?module=manifestor">
  10. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
  11. <title>
  12. <?=__($system->getPageTitle()); ?>
  13. </title>
  14. <meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0, shrink-to-fit=no'
  15. name='viewport' />
  16. <link href="<?=$system->getSkinPath(); ?>assets/css/montserrat.css" rel="stylesheet" />
  17. <link href="<?=$system->getSkinPath(); ?>assets/css/bootstrap.min.css" rel="stylesheet" />
  18. <link href="<?=$system->getSkinPath(); ?>assets/css/paper-dashboard.css?v=2.0.0" rel="stylesheet" />
  19. <link href="<?=$system->getSkinPath(); ?>assets/css/ubilling.css" rel="stylesheet" />
  20. <script src="<?=$system->getSkinPath(); ?>assets/js/core/jquery.min.js"></script>
  21. <link href="<?=$system->getSkinPath(); ?>assets/css/wr.css" rel="stylesheet" />
  22. <link href="<?=$system->getSkinPath(); ?>assets/css/glamforge.css" rel="stylesheet" />
  23. <script src="modules/jsc/sorttable.js" language="javascript"></script>
  24. <script type="text/javascript" src="modules/jsc/timepick/jquery.timepicker.min.js"></script>
  25. <link rel="stylesheet" type="text/css" href="modules/jsc/timepick/jquery.timepicker.css" />
  26. </head>
  27. <body class="">
  28. <div class="wrapper ">
  29. <div class="sidebar" data-color="white" data-active-color="danger">
  30. <div class="logo">
  31. <div class="logo-image-small">
  32. <?=$system->renderLogo(); ?>
  33. </div>
  34. </div>
  35. <div class="sidebar-wrapper">
  36. <ul class="nav">
  37. <?=$system->renderMenu(); ?>
  38. <?php
  39. if ($system->getAuthEnabled()) {
  40. if ($system->getLoggedInState()) {
  41. $ghostModeIcon=(@$_COOKIE['yalf_ghost'])? ' '.wf_img('skins/ghost.png',__('in ghost mode')) : '';
  42. print(wf_tag('li').wf_link('?forceLogout=true',wf_img('skins/poweroff.png').' '.__('Log out').$ghostModeIcon)).wf_tag('li',true);
  43. }
  44. }
  45. ?>
  46. </ul>
  47. </div>
  48. </div>
  49. <div class="main-panel">
  50. <!-- Navbar -->
  51. <nav class="navbar navbar-expand-lg navbar-absolute fixed-top navbar-transparent">
  52. <div class="container-fluid">
  53. <div class="navbar-wrapper">
  54. <div class="navbar-toggle">
  55. <button type="button" class="navbar-toggler">
  56. <span class="navbar-toggler-bar bar1"></span>
  57. <span class="navbar-toggler-bar bar2"></span>
  58. <span class="navbar-toggler-bar bar3"></span>
  59. </button>
  60. </div>
  61. <a class="navbar-brand" href="index.php"><?=__($system->getPageTitle()); ?></a>
  62. <?php
  63. if (function_exists('wr_QuickSearchRenderForm')) {
  64. print(wr_QuickSearchRenderForm());
  65. }
  66. ?>
  67. </div>
  68. <div class="collapse navbar-collapse justify-content-end" id="navigation">
  69. </div>
  70. </div>
  71. </nav>
  72. <div class="content">
  73. <div class="row">
  74. <div class="col-md-12">
  75. <div class="card">
  76. <div class="table">
  77. <?=$contentContainer ?>
  78. </div>
  79. </div>
  80. </div>
  81. </div>
  82. </div>
  83. <footer class="footer footer-black footer-white ">
  84. <div class="container-fluid">
  85. <div class="row">
  86. <nav class="footer-nav">
  87. <?php
  88. if ($system->isLocaleSwitchable()) {
  89. print(YalfLangSwitch::render());
  90. }
  91. ?>
  92. <div style="float:left;"> </div>
  93. </nav>
  94. <div class="credits ml-auto">
  95. <span class="copyright">
  96. <a href="https://wolfrecorder.com/">WolfRecorder</a>
  97. <?=file_get_contents('RELEASE'); ?> |
  98. <?php
  99. // Page generation time end
  100. $mtime = explode(' ', microtime());
  101. $totaltime = $mtime[0] + $mtime[1] - $starttime;
  102. print(__('GT:') . round($totaltime, 4));
  103. print(' QC: ' . $query_counter);
  104. ?>
  105. <? if (XHPROF) { print($xhprof_link); } ?>
  106. <? if (defined('SQL_DEBUG')) { print(web_SqlDebugIconShow()); }?>
  107. </span>
  108. </div>
  109. </div>
  110. </div>
  111. </footer>
  112. </div>
  113. </div>
  114. <script src="<?=$system->getSkinPath(); ?>assets/js/core/jquery-migrate.min.js"></script>
  115. <script src="<?=$system->getSkinPath(); ?>assets/js/core/popper.min.js"></script>
  116. <script src="<?=$system->getSkinPath(); ?>assets/js/core/bootstrap.min.js"></script>
  117. <script src="<?=$system->getSkinPath(); ?>assets/js/plugins/perfect-scrollbar.jquery.min.js"></script>
  118. <script src="<?=$system->getSkinPath(); ?>assets/js/plugins/chartjs.min.js"></script>
  119. <script src="<?=$system->getSkinPath(); ?>assets/js/plugins/bootstrap-notify.js"></script>
  120. <script src="<?=$system->getSkinPath(); ?>assets/js/paper-dashboard.min.js?v=2.0.0" type="text/javascript"></script>
  121. <link type="text/css" href="modules/jsc/jui/css/smoothness/jquery-ui-1.8.23.custom.css" rel="stylesheet" />
  122. <script type="text/javascript" language="javascript"
  123. src="modules/jsc/jui/js/jquery-ui-1.8.23.custom.min.js"></script>
  124. </body>
  125. </html>