bigly-chat/views/videos.ejs

14 lines
454 B
Text
Raw Normal View History

2024-11-25 14:12:43 -05:00
<%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>
<% } %>