Files
ALPHA-TRAIN2/services/tiktak/templates/watch.html
T
bobiqq c231be0094
build-and-push / detect (push) Successful in 7s
build-and-push / build (${{ fromJSON(needs.detect.outputs.services) }}) (push) Failing after 3m33s
services
2026-08-26 11:04:23 +03:00

22 lines
636 B
HTML

{{define "watch"}}
{{template "header"}}
<div class="ui text container">
<video controls width="640">
<source src="/{{ .VideoPath}}" type="video/webm"/>
<track label="Text" kind="subtitles" srclang="en" src="{{ .VttPath }}" default>
<p>Video is not supported in your browser</p>
</video>
<div class="ui one column grid">
<div class="column">
<div class="ui message">
<h4 class="ui header">{{ .Description }}</h4>
</div>
</div>
</div>
</div>
{{template "footer"}}
{{ end }}