14 lines
455 B
Text
14 lines
455 B
Text
|
<%- include('header.ejs') -%>
|
||
|
<div class='area'>
|
||
|
<h1>Video</h1>
|
||
|
<video controls src='/videos/<%= videoData.id %>.mp4'></video>
|
||
|
<div><b>
|
||
|
<%= videoData.title %>
|
||
|
</b>
|
||
|
</div>
|
||
|
<div>by <a href="/client/user?id=<%= videoData.username %>">
|
||
|
<%= videoData.username %>
|
||
|
</a></div>
|
||
|
<!-- todo: custom video player-->
|
||
|
</div>
|
||
|
<%- include('footer.ejs') -%>
|