diff options
| author | James Mills <prologic@shortcircuit.net.au> | 2020-03-21 20:34:37 +1000 |
|---|---|---|
| committer | James Mills <prologic@shortcircuit.net.au> | 2020-03-21 20:34:37 +1000 |
| commit | 976a6b4a8c7bcdada5c52acc85f93ece4f91e667 (patch) | |
| tree | 41a038aea2fc655e752372c6388f8387c4644b0d /templates/index.html | |
| parent | 83351c4b5b9e948c1ba8a949ca013b9b3f5eddcb (diff) | |
Added basic upload support
Diffstat (limited to 'templates/index.html')
| -rw-r--r-- | templates/index.html | 66 |
1 files changed, 27 insertions, 39 deletions
diff --git a/templates/index.html b/templates/index.html index aa772c6..e756a06 100644 --- a/templates/index.html +++ b/templates/index.html @@ -1,40 +1,28 @@ +{{ define "content" }}
{{ $playing := .Playing }}
-<html>
-<head>
- <title>Tube</title>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <link rel="shortcut icon" type="image/x-icon" href="/static/favicon.ico">
- <link rel="stylesheet" type="text/css" href="/static/theme.css">
-</head>
-<body>
- <nav><a href="/">Tube</a></nav>
- <main>
- <div id="player">
- {{ if $playing.ID }}
- <video id="video" controls poster="/t/{{ $playing.ID}}" src="/v/{{ $playing.ID }}.mp4"></video>
- <h1>{{ $playing.Title }}</h1>
- <h2>{{ $playing.Modified }}</h2>
- <p>{{ $playing.Description }}</p>
- {{ else }}
- <video id="video" controls></video>
- {{ end }}
- </div>
- <div id="playlist">
- {{ range $m := .Playlist }}
- {{ if eq $m.ID $playing.ID }}
- <a href="/v/{{ $m.ID }}" class="playing">
- {{ else }}
- <a href="/v/{{ $m.ID }}">
- {{ end }}
- <img src="/t/{{ $m.ID }}">
- <div>
- <h1>{{ $m.Title }}</h1>
- <h2>{{ $m.Modified }}</h2>
- </div>
- </a>
- {{ end }}
- </div>
- </main>
-</body>
-</html>
+<div id="player">
+ {{ if $playing.ID }}
+ <video id="video" controls poster="/t/{{ $playing.ID}}" src="/v/{{ $playing.ID }}.mp4"></video>
+ <h1>{{ $playing.Title }}</h1>
+ <h2>{{ $playing.Modified }}</h2>
+ <p>{{ $playing.Description }}</p>
+ {{ else }}
+ <video id="video" controls></video>
+ {{ end }}
+</div>
+<div id="playlist">
+ {{ range $m := .Playlist }}
+ {{ if eq $m.ID $playing.ID }}
+ <a href="/v/{{ $m.ID }}" class="playing">
+ {{ else }}
+ <a href="/v/{{ $m.ID }}">
+ {{ end }}
+ <img src="/t/{{ $m.ID }}">
+ <div>
+ <h1>{{ $m.Title }}</h1>
+ <h2>{{ $m.Modified }}</h2>
+ </div>
+ </a>
+ {{ end }}
+</div>
+{{end}}
|
