bigly-chat/views/player.ejs

28 lines
997 B
Text
Raw Normal View History

2024-11-25 14:12:43 -05:00
<%- include('header.ejs') -%>
<div class='area'>
<h1>Video</h1>
2024-11-25 14:12:43 -05:00
<div class='video-wrapper'>
2024-11-25 14:12:43 -05:00
<video src='/videos/<%= videoData.id %>.webm'></video>
2024-11-25 14:12:43 -05:00
<div class="progressbar">
2024-11-25 14:12:43 -05:00
<div></div>
</div>
2024-11-25 14:12:43 -05:00
<div class='controls'>
<div class='play'><img src='/static/img/play.svg' class='dark'></div>
2024-11-25 14:12:43 -05:00
<div class='full'><img src='/static/img/full.svg' class='dark'></div>
2024-11-25 14:12:43 -05:00
</div>
2024-11-25 14:12:43 -05:00
</div>
2024-11-25 14:12:43 -05:00
<div><b>
<%= videoData.title %>
</b>
</div>
2024-11-25 14:12:43 -05:00
<div>Created by <b><a href="/client/user?id=<%= videoData.username %>">
@<%= videoData.username %></a></b>
</a> on
<b>
<%= (new Date(videoData.date)+'').split(/(GMT|UTC)/g)[0] %>
</b>
</div>
2024-11-25 14:12:43 -05:00
<pre><%= videoData.desc %></pre>
2024-11-25 14:12:43 -05:00
</div>
2024-11-25 14:12:43 -05:00
<%- include('comments.ejs') -%>
2024-11-25 14:12:43 -05:00
<%- include('footer.ejs') -%>