base.html 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <!DOCTYPE html>
  2. <html lang="zh-CN" xmlns:th="http://www.thymeleaf.org"
  3. xmlns:layout="http://www.ultraq.net.nz/web/thymeleaf/layout">
  4. <head>
  5. <meta charset="UTF-8"/>
  6. <link rel="shortcut icon" href="/static/favicon.ico"/>
  7. <link href="/static/bootstrap/css/bootstrap.min.css" rel="stylesheet"/>
  8. <link rel="stylesheet" href="/static/css/base.css" type="text/css"/>
  9. <!-- Font Awesome -->
  10. <link rel="stylesheet" href="/static/AdminLTE/bower_components/font-awesome/css/font-awesome.min.css" />
  11. <!-- Ionicons -->
  12. <link rel="stylesheet" href="/static/AdminLTE/bower_components/Ionicons/css/ionicons.min.css" />
  13. <!-- Theme style -->
  14. <link rel="stylesheet" href="/static/AdminLTE/dist/css/AdminLTE.min.css" />
  15. <!-- AdminLTE Skins. We have chosen the skin-blue for this starter
  16. page. However, you can choose any other skin. Make sure you
  17. apply the skin class to the body tag so the changes take effect. -->
  18. <link rel="stylesheet" href="/static/AdminLTE/dist/css/skins/skin-blue.min.css" />
  19. <title>报告审核</title>
  20. <style>
  21. .box-shadow {
  22. box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
  23. }
  24. .my-img-thumbnail {
  25. display: inline-block;
  26. max-width: 100%;
  27. padding: 4px;
  28. line-height: 1.42857143;
  29. background-color: #fff;
  30. border: 1px solid #ddd;
  31. border-radius: 4px;
  32. transition: all .2s ease-in-out;
  33. width: 60px;
  34. height: 90px;
  35. }
  36. .pointer {
  37. cursor: pointer;
  38. cursor: hand;
  39. }
  40. </style>
  41. </head>
  42. <body class="skin-blue sidebar-mini" style="height: auto; min-height: 100%;">
  43. <div class="wrapper" style="height: auto; min-height: 100%;">
  44. <header class="main-header">
  45. <!-- Logo -->
  46. <a href="/home" class="logo">
  47. <span class="logo-lg">
  48. <b>MOOCTEST</b>
  49. </span>
  50. </a>
  51. <!-- Header Navbar -->
  52. <div class="navbar navbar-static-top" role="navigation">
  53. <!-- Navbar Right Menu -->
  54. <div class="navbar-custom-menu">
  55. <ul class="nav navbar-nav">
  56. <li class="user user-menu">
  57. <a href="#">
  58. <img src="/static/images/avatar/avatar-admin.jpg" class="user-image" alt="User Image" />
  59. <span class="hidden-xs">Admin</span>
  60. </a>
  61. </li>
  62. </ul>
  63. </div>
  64. </div>
  65. </header>
  66. <div layout:fragment="mainbody"></div>
  67. </div>
  68. <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
  69. <script src="/static/AdminLTE/bower_components/jquery/dist/jquery.min.js"></script>
  70. <!-- <script src="https://cdn.bootcss.com/jquery/1.12.4/jquery.min.js"></script> -->
  71. <!-- Bootstrap -->
  72. <script src="/static/bootstrap/js/bootstrap.min.js"></script>
  73. <!-- AdminLTE Task -->
  74. <script src="/static/AdminLTE/dist/js/adminlte.min.js"></script>
  75. <!-- Include all compiled plugins (below), or include individual files as needed -->
  76. <div layout:fragment="js"></div>
  77. </body>
  78. </html>