streamwatcher/templates/base.html

13 lines
No EOL
458 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">
{{ template "head" .}}
</head>
<body>
{{template "content" .}}
</body>
</html>
{{end}}