summaryrefslogtreecommitdiff
path: root/views/forum_thread.ejs
diff options
context:
space:
mode:
Diffstat (limited to 'views/forum_thread.ejs')
-rw-r--r--views/forum_thread.ejs29
1 files changed, 0 insertions, 29 deletions
diff --git a/views/forum_thread.ejs b/views/forum_thread.ejs
deleted file mode 100644
index 5c76704..0000000
--- a/views/forum_thread.ejs
+++ /dev/null
@@ -1,29 +0,0 @@
-<%- include('header', { title: thread.subject }) -%>
-<style>
-table { max-width: 50em; }
-table .author { border-right: none; }
-table .time { border-left: none; font-weight: normal; }
-table .command { border: none; }
-</style>
-<% posts.forEach((row) => { %>
-<p>
-<table class="post">
-<tr>
-<th class="author"><a href="/user/<%- row.author_name %>"><%= row.author_name %></a>
-<th class="r time"><%= row.ctime %>
-<%= row.edited ? "(edited " + row.mtime + ")" : "" %>
-<tr>
-<td class="body" colspan="2"><%- row.body %></td>
-<% if (user) { %>
-<tr>
-<td class="r command" colspan=2>
-<% if (row.author_id === user.user_id) { %>
-<a href="/forum/edit/<%- row.post_id %>">Edit</a>
-<% } %>
-<a href="/forum/reply/<%- row.post_id %>">Reply</a>
-<% } %>
-</table>
-<% }); %>
-<% if (user) { %>
-<p><a href="/forum/reply/<%- posts[0].post_id %>">Reply</a>
-<% } %>