36 lines
1.1 KiB
Plaintext
36 lines
1.1 KiB
Plaintext
{{- /*gotype: vivaplusdl.VideoPlayerVM*/}}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{{.Title}} - Viva++</title>
|
|
<link href="/static/style.css" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<h1>Viva++</h1>
|
|
<div class="back-button-container">
|
|
<a href="/" class="back-button">← Back to Home</a>
|
|
</div>
|
|
<div class="video-player-container">
|
|
<div class="video-player-box">
|
|
<h2 class="video-title">{{.Title}}</h2>
|
|
<div class="video-player">
|
|
<video controls autoplay src="/stream/{{.ID}}">
|
|
Your browser does not support the video tag.
|
|
</video>
|
|
</div>
|
|
<div class="video-player-info">
|
|
<p class="video-description">{{.Description}}</p>
|
|
<!--
|
|
<div class="video-actions">
|
|
<form method="post" action="/video/{{.ID}}/mark-watched">
|
|
<button type="submit" class="mark-watched">Mark as Watched</button>
|
|
</form>
|
|
</div>
|
|
-->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|