From 18f196400352eb8c0bb6f6dd30890b8cc272ad15 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Sun, 21 Nov 2021 19:44:01 +0100 Subject: Use grid-layout instead of table for forum posts. --- views/forum_thread.pug | 23 +---------------------- 1 file changed, 1 insertion(+), 22 deletions(-) (limited to 'views/forum_thread.pug') diff --git a/views/forum_thread.pug b/views/forum_thread.pug index bb19b61..3ed117e 100644 --- a/views/forum_thread.pug +++ b/views/forum_thread.pug @@ -4,34 +4,13 @@ html head include head 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; } body include header article h1= thread.subject each row in posts - p - table - tr - th.author: a(href="/user/"+row.author_name)= row.author_name - th.r.time= row.ctime - if row.edited - | - | (edited #{row.mtime}) - tr - td.body(colspan=2)!= row.body - if user - tr - td.r.command(colspan=2) - if row.author_id === user.user_id - | #[a(href="/forum/edit/"+row.post_id) Edit] - | - | #[a(href="/forum/reply/"+row.post_id) Reply] + +forumpost(row,1) if user p: a(href="/forum/reply/"+posts[0].post_id) Reply -- cgit v1.2.3