streamwatcher/templates/base.html
2020-07-12 13:38:04 +00:00

13 lines
No EOL
480 B
HTML
Executable file

{{define "base"}}
<html>
<head>
<title>StreamWatcher</title>
<link rel="stylesheet" href="https://unpkg.com/purecss@2.0.3/build/pure-min.css" integrity="sha384-cg6SkqEOCV1NbJoCu11+bm0NvBRc8IYLRGXkmNrqUBfTjmMYwNKPWBTIKyw9mHNJ" crossorigin="anonymous">
<link rel="stylesheet" href="/static/css/style.css">
<script src="/static/js/stream.js"></script>
</head>
<body>
{{template "content" .}}
</body>
</html>
{{end}}