123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <!--
- * @description:
- * @Author: CP
- * @Date: 2020-08-21 11:55:28
- * @FilePath: \construction_management\web\views\shared\layout.html
- -->
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
- <!-- Bootstrap core CSS -->
- <link href="/public/dist/css/bootstrap.min.css" rel="stylesheet">
- <!-- Optional Bootstrap Theme -->
- <link href="data:text/css;charset=utf-8," data-href="/public/dist/css/bootstrap-theme.min.css" rel="stylesheet" id="bs-theme-stylesheet">
- <title>{{.Title}}</title>
- </head>
- <body>
- <nav class="navbar navbar-default">
- <div class="container-fluid">
- <!-- Brand and toggle get grouped for better mobile display -->
- <div class="navbar-header">
- <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
- <span class="sr-only">Toggle navigation</span>
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- </button>
- <a class="navbar-brand" href="/admin/"></a>
- </div>
-
- </div><!-- /.container-fluid -->
- </nav>
- <div>
- <!-- Render the current template here -->
- {{ yield }}
- <hr />
- <footer style="text-align: center;">
- <p>© </p>
- </footer>
- </div>
- <!-- Bootstrap core JavaScript
- ================================================== -->
- <!-- Placed at the end of the document so the pages load faster -->
- <script src="/public/dist/jquery/1.12.4/jquery.min.js"></script>
- <script>window.jQuery || document.write('<script src="/public/dist/js/vendor/jquery.min.js"><\/script>')</script>
- <script src="/public/dist/bootstrap/3.3.7/js/bootstrap.min.js"></script>
- </body>
- </html>
|