summaryrefslogtreecommitdiff
path: root/views/forum_view.pug
diff options
context:
space:
mode:
Diffstat (limited to 'views/forum_view.pug')
-rw-r--r--views/forum_view.pug54
1 files changed, 30 insertions, 24 deletions
diff --git a/views/forum_view.pug b/views/forum_view.pug
index 8afd1e4..ae51945 100644
--- a/views/forum_view.pug
+++ b/views/forum_view.pug
@@ -5,37 +5,43 @@ html
include head
title Forum
meta(http-equiv="refresh" content=900)
- style tfoot { background-color: gainsboro }
+ style.
+ tbody a { display: block }
+ td:nth-child(3) { text-align: right }
body
include header
article
h1 Forum
table
- tr
- th Subject
- th Author
- th Replies
- th Time
- each row in threads
+ thead
tr
- td: a(href="/forum/thread/"+row.thread_id)= row.subject
- td: a(href="/user/"+row.author_name)= row.author_name
- td= row.replies
- td= row.mtime
- tfoot: tr: td(colspan=4)
- if current_page > 1
- | #[a(href="/forum/page/"+(current_page-1)) ←]
- |
- - for (let p=1; p<=page_count && p<=30; ++p)
- if p === current_page
- | (#{p})
- |
- else
- | #[a(href="/forum/page/"+p)= p]
- |
- if current_page < page_count
- | #[a(href="/forum/page/"+(current_page+1)) &#x2192;]
+ th Subject
+ th Author
+ th Replies
+ th Time
+ tbody
+ each row in threads
+ tr
+ td: a(href="/forum/thread/"+row.thread_id)= row.subject
+ td: a(href="/user/"+row.author_name)= row.author_name
+ td= row.replies
+ td= row.mtime
+ tfoot
+ tr
+ td(colspan=4)
+ if current_page > 1
+ | #[a(href="/forum/page/"+(current_page-1)) &#x2190;]
+ |
+ - for (let p=1; p<=page_count && p<=30; ++p)
+ if p === current_page
+ | (#{p})
+ |
+ else
+ | #[a(href="/forum/page/"+p)= p]
+ |
+ if current_page < page_count
+ | #[a(href="/forum/page/"+(current_page+1)) &#x2192;]
if user
p: a(href="/forum/post") New thread