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}) %>
<% }) %>