All checks were successful
Build / build (push) Successful in 3m15s
29 lines
665 B
Plaintext
29 lines
665 B
Plaintext
{{- /*gotype: vivaplusdl.VideoInfoVM*/}}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Viva++</title>
|
|
<link href="/static/style.css" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<h1>Viva++</h1>
|
|
<div class="video-container">
|
|
<div class="video-box">
|
|
<div class="thumbnail-container">
|
|
<a href="/video/{{.ID}}">
|
|
<img src="{{.Thumbnail}}" alt="Thumbnail" class="video-thumbnail" />
|
|
<div class="play-button">
|
|
<span class="play-symbol">▶</span>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
<div class="video-info">
|
|
<h2 class="video-title">{{.Title}}</h2>
|
|
<p class="video-description">{{.Description}}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|