layout.html 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <!--
  2. * @description:
  3. * @Author: CP
  4. * @Date: 2020-08-21 11:55:28
  5. * @FilePath: \construction_management\web\views\shared\layout.html
  6. -->
  7. <!DOCTYPE html>
  8. <html>
  9. <head>
  10. <meta charset="utf-8" />
  11. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  12. <link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
  13. <!-- Bootstrap core CSS -->
  14. <link href="/public/dist/css/bootstrap.min.css" rel="stylesheet">
  15. <!-- Optional Bootstrap Theme -->
  16. <link href="data:text/css;charset=utf-8," data-href="/public/dist/css/bootstrap-theme.min.css" rel="stylesheet" id="bs-theme-stylesheet">
  17. <title>{{.Title}}</title>
  18. </head>
  19. <body>
  20. <nav class="navbar navbar-default">
  21. <div class="container-fluid">
  22. <!-- Brand and toggle get grouped for better mobile display -->
  23. <div class="navbar-header">
  24. <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
  25. <span class="sr-only">Toggle navigation</span>
  26. <span class="icon-bar"></span>
  27. <span class="icon-bar"></span>
  28. <span class="icon-bar"></span>
  29. </button>
  30. <a class="navbar-brand" href="/admin/"></a>
  31. </div>
  32. </div><!-- /.container-fluid -->
  33. </nav>
  34. <div>
  35. <!-- Render the current template here -->
  36. {{ yield }}
  37. <hr />
  38. <footer style="text-align: center;">
  39. <p>&copy; </p>
  40. </footer>
  41. </div>
  42. <!-- Bootstrap core JavaScript
  43. ================================================== -->
  44. <!-- Placed at the end of the document so the pages load faster -->
  45. <script src="/public/dist/jquery/1.12.4/jquery.min.js"></script>
  46. <script>window.jQuery || document.write('<script src="/public/dist/js/vendor/jquery.min.js"><\/script>')</script>
  47. <script src="/public/dist/bootstrap/3.3.7/js/bootstrap.min.js"></script>
  48. </body>
  49. </html>