github.com/wanliu/go-oauth2-server@v0.0.0-20180817021415-f928fa1580df/web/layouts/outside.html (about)

     1  {{ define "base" }}
     2  <!DOCTYPE html>
     3  <html lang="en">
     4  <head>
     5    <meta charset="utf-8">
     6    <meta http-equiv="X-UA-Compatible" content="IE=edge">
     7    <meta name="viewport" content="width=device-width, initial-scale=1">
     8  
     9    <title>{{ template "title" . }}</title>
    10    <link rel="shortcut icon" href="/favicon.ico">
    11  
    12    <!-- Bootstrap core CSS -->
    13    <link rel="stylesheet" href="/styles/bootstrap.min.css">
    14  
    15  
    16    <!-- Custom CSS -->
    17    <link href="/styles/outside.css" rel="stylesheet">
    18    <!-- Custom styles for this template -->
    19    {{ template "links" . }}
    20  
    21    <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
    22    <!--[if lt IE 9]>
    23      <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
    24      <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
    25    <![endif]-->
    26  
    27    <!-- jQuery -->
    28    <script src="/js/jquery.min.js"></script>
    29  </head>
    30  <body>
    31    <!-- Begin page content -->
    32    {{ template "content" . }} 
    33    <!-- Fixed footer -->
    34    <footer class="footer">
    35      <div class="container">
    36        <p class="text-muted">&copy;湖南捷杰信息有限公司版权所有. 湘ICP备13005289号-3</p>
    37      </div>
    38    </footer>
    39  
    40    <!-- Bootstrap core JavaScript
    41    ================================================== -->
    42    <!-- Placed at the end of the document so the pages load faster -->
    43    <script src="/js/bootstrap.min.js" ></script>
    44  
    45    <!-- Custom scripts -->
    46    {{ template "scripts" . }}
    47  </body>
    48  </html>
    49  {{ end }}
    50  {{ define "links" }}{{ end }}
    51  {{ define "scripts" }}{{ end }}