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.pug4
1 files changed, 3 insertions, 1 deletions
diff --git a/views/forum_view.pug b/views/forum_view.pug
index 990d3d3..46c1b1e 100644
--- a/views/forum_view.pug
+++ b/views/forum_view.pug
@@ -6,6 +6,7 @@ html
title Forum
meta(http-equiv="refresh" content=3600)
style.
+ .unread { font-weight: bold }
tbody a { display: block }
body
include header
@@ -21,7 +22,8 @@ html
tbody
each row in threads
tr
- td: a(href="/forum/thread/"+row.thread_id)= row.subject
+ td(class=row.is_read?"read":"unread")
+ a(href="/forum/thread/"+row.thread_id)= row.subject
td.r= row.count
td.w= row.mtime
tfoot