Made some small changes
This commit is contained in:
@@ -10,13 +10,6 @@
|
||||
<header id='page-header'>
|
||||
<%- include('../headers/timeline'); %>
|
||||
</header>
|
||||
<form method="POST" action="/submit_nothing" style="display:none">
|
||||
<!-- Form is used to help mitigate spam as it is the first form on the front page -->
|
||||
<input type="hidden" name="post_index" value="0">
|
||||
<input placeholder="username" name="name"><br/>
|
||||
<textarea placeholder="comment" name="content"></textarea><br/>
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
<div id="posts">
|
||||
<% for (let index = posts.length - 1; index >= 0; index--) { %>
|
||||
<% if (posts[index]["deleted"] != true) { %>
|
||||
@@ -24,13 +17,6 @@
|
||||
<% } %>
|
||||
<% } %>
|
||||
</div>
|
||||
<form method="POST" action="/submit_nothing" style="display:none">
|
||||
<!-- Form is used to help mitigate spam as it is the last form on the front page -->
|
||||
<input type="hidden" name="post_index" value="0">
|
||||
<input placeholder="username" name="name"><br/>
|
||||
<textarea placeholder="comment" name="content"></textarea><br/>
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
<footer id='footer'>
|
||||
<%- include('../partials/footer'); %>
|
||||
</footer>
|
||||
|
||||
@@ -15,8 +15,12 @@
|
||||
</div>
|
||||
<div id="post-details">
|
||||
<span id="post-author">
|
||||
<i><a href="/user/<%= user.username %>"><%= user.prettyname %></a></i>
|
||||
<i><a href="/user/<%= user.username %>"><%= user.prettyname %></a></i>
|
||||
</span>
|
||||
-
|
||||
<a if='edit-account-link' href="<%= config.edit_account_base_url %>/<%= user.id %>">
|
||||
<img class='icon' src='/icons/edit.png' alt='<%= locale.edit_account %>' title='<%= locale.edit_account %>'>
|
||||
</a>
|
||||
-
|
||||
<span id="post-pubdate">
|
||||
<i><%= func.unix_time_to_date_format(post.pubdate) %></i><br/>
|
||||
|
||||
Reference in New Issue
Block a user