streamwatcher/templates/moments.html

11 lines
No EOL
313 B
HTML
Executable file

{{template "base" .}}
{{define "head"}}
<script src="/static/js/moments.js"></script>
{{end}}
{{define "content"}}
{{range $moment := .Moments}}
{{range $image := $moment}}
<img src="/streams/{{$.Stream.Name}}/{{$.WatchArea.Name}}/{{$image}}">
{{end}}
{{end}}
{{end}}