updated ejs

This commit is contained in:
2025-10-09 14:18:03 +01:00
parent 2ada1d970f
commit e63fb4a27a
7 changed files with 52 additions and 38 deletions

View File

@@ -1,5 +1,14 @@
<b><%= comment.name %></b>
<%= func.unix_time_to_date_format(comment.pubdate) %>
<a href='/comment/<%= postID %>-<%= comment.id %>'>No. <%= postID %>-<%= comment.id %></a>:<br/>
<%- func.render_comment(comment.content) %>
<div id='comment-name'>
<b><%= comment.name %></b>
</div>
<div id='comment-date date'>
<%= func.unix_time_to_date_format(comment.pubdate) %>
</div>
<div id='comment-id'>
<a href='/comment/<%= postID %>-<%= comment.id %>'>No. <%= postID %>-<%= comment.id %></a>:<br/>
</div>
<div id='comment-content'>
<%- func.render_comment(comment.content) %>
</div>
<br/>