better UI

This commit is contained in:
biglyderv 2024-11-25 14:12:43 -05:00
parent fcde6549fa
commit 5622d2bee4
5 changed files with 25 additions and 14 deletions

View file

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