From 553f126f2a0c40002352543dea7236f8fbe4b07e Mon Sep 17 00:00:00 2001 From: deadvey Date: Thu, 9 Oct 2025 14:43:48 +0100 Subject: [PATCH] Changed how comments are ided and classed --- views/posts/post.ejs | 2 +- views/posts/tag.ejs | 2 +- views/posts/timeline.ejs | 2 +- views/posts/user.ejs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/views/posts/post.ejs b/views/posts/post.ejs index 4d4e6b0..fc6ff2c 100644 --- a/views/posts/post.ejs +++ b/views/posts/post.ejs @@ -43,7 +43,7 @@
<% comments.forEach((comment, index) => { %> -
+
<%- include('../partials/comment', {comment: comment}) %>
<% }) %> diff --git a/views/posts/tag.ejs b/views/posts/tag.ejs index d68087e..4064079 100644 --- a/views/posts/tag.ejs +++ b/views/posts/tag.ejs @@ -41,7 +41,7 @@
<% comments.forEach((comment, index) => { %> -
+
<%- include('../partials/comment', {comment: comment}) %>
<% }) %> diff --git a/views/posts/timeline.ejs b/views/posts/timeline.ejs index 6e63d20..2cbb84c 100644 --- a/views/posts/timeline.ejs +++ b/views/posts/timeline.ejs @@ -41,7 +41,7 @@
<% comments.forEach((comment, index) => { %> -
+
<%- include('../partials/comment', {comment: comment}) %>
<% }) %> diff --git a/views/posts/user.ejs b/views/posts/user.ejs index e4797b8..d6bd80e 100644 --- a/views/posts/user.ejs +++ b/views/posts/user.ejs @@ -38,7 +38,7 @@
<% comments.forEach((comment, index) => { %> -
+
<%- include('../partials/comment', {comment: comment}) %>
<% }) %>