UI and icon fixes
This commit is contained in:
parent
b66c5e3c47
commit
845b0cc954
6 changed files with 135 additions and 5 deletions
|
@ -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>
|
|
@ -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', {
|
||||
|
|
|
@ -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) { %>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue