is anyone reading these commit msgs
This commit is contained in:
parent
dabbc7d862
commit
40f9c219b8
9 changed files with 66 additions and 10 deletions
14
views/videos.ejs
Normal file
14
views/videos.ejs
Normal file
|
@ -0,0 +1,14 @@
|
|||
<%for (videoData of videos) { %>
|
||||
<a href='/client/video?id=<%= videoData.id %>'>
|
||||
<div class='video'>
|
||||
<img src='/videos/<%= videoData.id %>.png'>
|
||||
<div><b>
|
||||
<%= videoData.title %>
|
||||
</b>
|
||||
</div>
|
||||
<div>by <a href="/client/user?id=<%= videoData.username %>">
|
||||
<%= videoData.username %>
|
||||
</a></div>
|
||||
</div>
|
||||
</a>
|
||||
<% } %>
|
Loading…
Add table
Add a link
Reference in a new issue