summaryrefslogtreecommitdiff
path: root/views/head.pug
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2021-11-22 13:12:38 +0100
committerTor Andersson <tor@ccxvii.net>2021-11-22 13:12:38 +0100
commit5dec24377dc62241146bb674358621fb1fe34802 (patch)
treecac2eb5299d8bdaf704378b0e5e360548b935e42 /views/head.pug
parentc6908c035c61820e643580f1f06c052af8b71a1e (diff)
downloadserver-5dec24377dc62241146bb674358621fb1fe34802.tar.gz
More Pug cleanups.
Diffstat (limited to 'views/head.pug')
-rw-r--r--views/head.pug23
1 files changed, 12 insertions, 11 deletions
diff --git a/views/head.pug b/views/head.pug
index f896ce2..2b7858e 100644
--- a/views/head.pug
+++ b/views/head.pug
@@ -7,18 +7,19 @@ link(rel="stylesheet" href="/style.css")
mixin forumpost(row,show_buttons)
.post
- .from: a(href="/user/"+row.author_name)= row.author_name
- .time= row.ctime
- if row.edited
- |
- | (edited #{row.mtime})
- .body!= row.body
- if show_buttons && user
- .edit
- if row.author_id === user.user_id
- | #[a(href="/forum/edit/"+row.post_id) Edit]
+ .head
+ .from: a(href="/user/"+row.author_name)= row.author_name
+ .time= row.ctime
+ if row.edited
|
- | #[a(href="/forum/reply/"+row.post_id) Reply]
+ | (edited #{row.mtime})
+ .body!= row.body
+ if show_buttons && user
+ .edit
+ if row.author_id === user.user_id
+ | #[a(href="/forum/edit/"+row.post_id) Edit]
+ |
+ | #[a(href="/forum/reply/"+row.post_id) Reply]
mixin gametable(status,table,hide_title=0)
table