streamwatcher/templates/base.html

27 lines
No EOL
987 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>
<div class="flex-row">
<div class="menu flex-column">
<div class="menu-header">Streams</div>
{{if .Streams}}
{{range $name, $stream := .Streams}}
<a href="/?name={{$name}}" class="menu-item">{{$name}}</a>
{{end}}
{{else}}
<div>No Streams</div>
{{end}}
</div>
<div class="content">
{{template "content" .}}
</div>
</div>
</body>
</html>
{{end}}