UI and icon fixes

This commit is contained in:
biglyderv 2025-02-27 11:51:22 -05:00
parent b66c5e3c47
commit 845b0cc954
Signed by: biglyderv
GPG key ID: 0E2EB0B4CD7397B5
6 changed files with 135 additions and 5 deletions

View file

@ -18,5 +18,5 @@
<div class='sub'><b>Posted on</b> <%= new Date(date).toISOString() %> </div>
<% } %>
<%- include ('vblock.ejs', {link: `/${type}/${id}`, icon: '/icon.svg', name: 'Original'}) %>
<%- include ('vblock.ejs', {link: `/walls/get/${type}/${id}/0`, icon: '/icon.svg', name: 'Replies'}) %>
<%- include ('vblock.ejs', {link: `/walls/get/${type}/${id}/0`, icon: '/walls.svg', name: 'Replies'}) %>
</div>

View file

@ -4,8 +4,8 @@
<div class='main'>
<h1 class="header-big">Replies</h1>
<%- include ('vblock.ejs', {link: `${Math.max(page - 1,0)}`, icon: '/icon.svg', name: 'Previous'}) %>
<%- include ('vblock.ejs', {link: `${page * 1 + 1}`, icon: '/icon.svg', name: 'Next'}) %>
<%- include ('vblock.ejs', {link: `${Math.max(page - 1,0)}`, icon: '/prev.svg', name: 'Previous'}) %>
<%- include ('vblock.ejs', {link: `${page * 1 + 1}`, icon: '/next.svg', name: 'Next'}) %>
</div>
<% if (page == 0) { %>
<%- include('form.ejs', {

View file

@ -3,7 +3,8 @@
<img src="/uploads/pfp_<%= username %>.png" class="avatar-img">
<span><%= username %></span>
</h1>
<span>A very cool person!</span>
<div class='commentbox'>A very cool person!</div>
<%- include ('vblock.ejs', {link: `/walls/get/users/${username}/0`, icon: '/icon.svg', name: 'Replies'}) %>
</div>
<% if (isYou) { %>