* added "quotes" to the locales
* made all the ejs pages use "postID" as the variable for post indexes * split up en-GB and en-US
This commit is contained in:
@@ -18,7 +18,7 @@
|
||||
<div id="posts">
|
||||
<% for (let index = posts.length - 1; index >= 0; index--) { %>
|
||||
<% if (posts[index]["deleted"] != true) { %>
|
||||
<%- include('../posts/timeline', {post: posts[index], index: index, user: users[posts[index].userID]}); %>
|
||||
<%- include('../posts/timeline', {post: posts[index], postID: index, user: users[posts[index].userID]}); %>
|
||||
<% } %>
|
||||
<% } %>
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user