bigly-chat/views/videos.ejs

15 lines
439 B
Text
Raw Normal View History

2024-09-19 05:58:01 -04:00
<%for (videoData of videos) { %>
2024-09-19 18:18:44 -04:00
<div class='video'>
<a href='/client/video?id=<%= videoData.id %>'>
2024-09-19 05:58:01 -04:00
<img src='/videos/<%= videoData.id %>.png'>
2024-09-20 08:38:33 -04:00
</a>
<div><b>
<%= videoData.title %>
</b>
</div>
<div>by <a href="/client/user?id=<%= videoData.username %>">
<%= videoData.username %>
</a></div>
2024-09-19 18:18:44 -04:00
</a>
</div>
2024-09-19 05:58:01 -04:00
<% } %>