diff options
Diffstat (limited to 'views/partials/comments.ejs')
| -rw-r--r-- | views/partials/comments.ejs | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/views/partials/comments.ejs b/views/partials/comments.ejs index ec27b09..907040f 100644 --- a/views/partials/comments.ejs +++ b/views/partials/comments.ejs @@ -6,20 +6,20 @@ <a href="/profile/{{username}}">{{username}}</a> </td> <td colspan="2" class="comment"> - <div> + <div class="body"> {{comment}} + <div class="date"> + {{date}} {{time}}<br> + </div> + <div class="edit-links"> + <a href="/comment/{{id}}/edit">edit</a> · + <a href="#" data-id="{{id}}" class='remove'>remove</a> + <!-- + · + <a href="/comment/{{id}}/reply">reply</a> + --> + </div> </div> - <span class="date"> - {{date}} {{time}} - </span> - <span class="edit-links"> - <a href="/comment/{{id}}/edit">edit</a> · - <a href="#" data-id="{{id}}" class='remove'>remove</a> -<!-- - · - <a href="/comment/{{id}}/reply">reply</a> - --> - </span> </td> </tr> </script> |
