1234567891011121314151617181920212223 |
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UC-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no">
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <title>{{ template "title" . }}</title>
- <link rel="shortcut icon" type="image/png" href="">
- <link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.95.3/css/materialize.min.css">
- {{ template "styles" . }}
- </head>
- <body>
- {{ template "content" . }}
- <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
- <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.95.3/js/materialize.min.js"></script>
- {{ template "scripts" . }}
- </body>
- </html>
|