Files
rs_website/templates/stream.html
2026-04-13 03:51:22 -05:00

23 lines
706 B
HTML

{{define "title"}}Stream — Ridgway Systems{{end}}
{{define "meta-desc"}}Watch the Ridgway Systems live stream.{{end}}
{{define "content"}}
<div class="page-header">
<h1>Live Stream</h1>
{{if .Live}}
<p class="page-desc"><span class="live-badge">&#x25CF; live</span> Streaming now on Twitch.</p>
{{else}}
<p class="page-desc">Not currently live. Follow on <a href="https://twitch.tv/{{.Channel}}" target="_blank" rel="noopener">Twitch</a> to get notified.</p>
{{end}}
</div>
<div class="stream-player">
<iframe
src="https://player.twitch.tv/?channel={{.Channel}}&parent={{.Parent}}&autoplay=false"
height="100%"
width="100%"
allowfullscreen>
</iframe>
</div>
{{end}}