diff options
| author | Tim Keller <tjk@tjkeller.xyz> | 2026-05-14 21:22:20 -0500 |
|---|---|---|
| committer | Tim Keller <tjk@tjkeller.xyz> | 2026-05-14 21:22:20 -0500 |
| commit | 7155ffcb5ef169bdc4e7cccc475ce83102edc329 (patch) | |
| tree | 17ed94d210609271a1cb4c6b535c4f82b7a65fbf /templates | |
| parent | 556ae86fa227872dea81f36923daef42a1296062 (diff) | |
| download | embedtube-7155ffcb5ef169bdc4e7cccc475ce83102edc329.tar.xz embedtube-7155ffcb5ef169bdc4e7cccc475ce83102edc329.zip | |
even more minimal and removed playback rate control since i found the intended control on the top on the embed frame oopsies
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/index.html | 6 | ||||
| -rw-r--r-- | templates/watch.html | 11 |
2 files changed, 7 insertions, 10 deletions
diff --git a/templates/index.html b/templates/index.html index 0d64803..164a810 100644 --- a/templates/index.html +++ b/templates/index.html @@ -1,5 +1,5 @@ {{ define "content" }} - <div id="index"> - {{ .Content }} - </div> +<main> + {{ .Content }} +</main> {{ end }} diff --git a/templates/watch.html b/templates/watch.html index 89ba0e6..07600de 100644 --- a/templates/watch.html +++ b/templates/watch.html @@ -14,15 +14,12 @@ > </iframe> <main> - <div id="title-bar"> - <h1 id="title"></h1> - <label>Rate: <select id="pb-rate"></select></label> - <button id="toggle-details">Show Details</button> - </div> + <h1 id="title"></h1> + <button id="toggle-details">Show Details</button> <div id="details" style="display:none"> <span><a id="details-channel"></a> @ <span id="details-date"></span></span><br> - <span><span id="details-views"></span> Views => 👍 <span id="details-likes"></span> => <span id="details-comments"></span> Comments</span><br> - <span id="details-desc">No description has been added to this video.</span><br> + <span><span id="details-views"></span> Views => 👍 <span id="details-likes"></span> => <span id="details-comments"></span> Comments</span><br><br> + <div id="details-desc">No description has been added to this video.</div> <h4>Tags:</h4> <div id="details-tags"></div> </div> |
