github.com/jxgolibs/go-oauth2-server@v1.0.1/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  
    11    <!-- Bootstrap core CSS -->
    12    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
    13  
    14    <!-- Custom CSS -->
    15    <link href="/css/outside.css" rel="stylesheet">
    16  
    17    <!-- Custom styles for this template -->
    18    {{ template "links" . }}
    19  
    20    <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
    21    <!--[if lt IE 9]>
    22      <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
    23      <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
    24    <![endif]-->
    25  
    26    <!-- jQuery -->
    27    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
    28  </head>
    29  <body>
    30    <!-- Begin page content -->
    31    {{ template "content" . }}
    32  
    33    <!-- Bootstrap core JavaScript
    34    ================================================== -->
    35    <!-- Placed at the end of the document so the pages load faster -->
    36    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
    37  
    38    <!-- Custom scripts -->
    39    {{ template "scripts" . }}
    40  </body>
    41  </html>
    42  {{ end }}
    43  {{ define "links" }}{{ end }}
    44  {{ define "scripts" }}{{ end }}