bigly-chat/views/videos.ejs
2024-11-25 14:12:43 -05:00

15 lines
No EOL
439 B
Text

<%for (videoData of videos) { %>
<div class='video'>
<a href='/client/video?id=<%= videoData.id %>'>
<img src='/videos/<%= videoData.id %>.png'>
</a>
<div><b>
<%= videoData.title %>
</b>
</div>
<div>by <a href="/client/user?id=<%= videoData.username %>">
<%= videoData.username %>
</a></div>
</a>
</div>
<% } %>