home.php 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?php
  2. include($_SERVER['DOCUMENT_ROOT'] . "/Authorization/script/php/permission/check_right.php");
  3. ?>
  4. <!doctype html>
  5. <html class="fixed">
  6. <head>
  7. <?php include("bim-support-header.html"); ?>
  8. <!-- vue3 -->
  9. <script src="https://unpkg.com/vue@next"></script>
  10. <script src="./script/js/global.js"></script>
  11. <script type="application/javascript">
  12. var userName = "<?php echo $_SESSION['name'] ?>";
  13. var role = "<?php echo ($groupName); ?>";
  14. var right = <?php echo ($right); ?>;
  15. var pageHeader = '首頁';
  16. </script>
  17. </head>
  18. <body>
  19. <section class="body">
  20. <!-- start: header -->
  21. <header-menu></header-menu>
  22. <!-- end: header -->
  23. <div class="inner-wrapper">
  24. <!-- start: sidebar -->
  25. <side-bar></side-bar>
  26. <!-- end: sidebar -->
  27. <section role="main" class="content-body">
  28. <header class="page-header">
  29. <h2>{{pageHeader}}</h2>
  30. </header>
  31. <h1>BIM資訊系統</h1>
  32. <h4>
  33. BIM資源網提供元件庫、API庫以及樣版庫,使用git管理元件、API以及樣板及其之版本控制,可瀏覽所有元件、API及樣板的內容及其相關屬性,以利下載自己所需之檔案。<br>
  34. </h4>
  35. </div>
  36. </section>
  37. <script>
  38. vm.mount('.body');
  39. addUserImage(userName.charAt(0), role);
  40. </script>
  41. <?php include("bim-support-body.html"); ?>
  42. </body>
  43. </html>