derv-net/views/comment.ejs

7 lines
389 B
Text
Raw Normal View History

2025-02-26 01:10:09 -05:00
<div class='main'>
2025-02-26 13:54:25 -05:00
<h1 class="header-big"><%= username %></h1>
2025-02-26 01:10:09 -05:00
<div><%= content %></div>
2025-02-26 13:54:25 -05:00
<div class='sub'><b>Posted on</b> <%= new Date(date).toISOString() %> </div>
<%- include ('vblock.ejs', {link: `/${type}/${id}`, icon: '/icon.svg', name: 'Original'}) %>
2025-02-26 01:40:27 -05:00
<%- include ('vblock.ejs', {link: `/walls/get/${type}/${id}/0`, icon: '/icon.svg', name: 'Replies'}) %>
2025-02-26 01:10:09 -05:00
</div>