diff options
author | Tor Andersson <tor@ccxvii.net> | 2021-11-21 19:44:01 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2021-11-21 19:44:01 +0100 |
commit | 18f196400352eb8c0bb6f6dd30890b8cc272ad15 (patch) | |
tree | 3a541981566242b6d2df862ea2963fb4e2f9ee35 /views/forum_reply.pug | |
parent | a1fe768c6d40c7c885db1c9843c61527cbe583e3 (diff) | |
download | server-18f196400352eb8c0bb6f6dd30890b8cc272ad15.tar.gz |
Use grid-layout instead of table for forum posts.
Diffstat (limited to 'views/forum_reply.pug')
-rw-r--r-- | views/forum_reply.pug | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/views/forum_reply.pug b/views/forum_reply.pug index 5b5a3bb..3aa6d0b 100644 --- a/views/forum_reply.pug +++ b/views/forum_reply.pug @@ -4,26 +4,12 @@ html head include head title= thread.subject - style. - input, textarea { width: min(45rem,100%) } - 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 - table - tr - th.author: a(href="/user/"+post.author_name)= post.author_name - th.r.time= post.ctime - if post.edited - | - | (edited #{post.mtime}) - tr - td.body(colspan=2)!= post.body + +forumpost(post,0) form(method="post" action="/forum/reply/"+thread.thread_id) p Reply: |