summaryrefslogtreecommitdiff
path: root/views/forum_reply.pug
blob: 3aa6d0b586302d466fe565520b46c58334321b86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//- vim:ts=4:sw=4:
doctype html
html
	head
		include head
		title= thread.subject
	body
		include header
		article
			h1= thread.subject

			+forumpost(post,0)

			form(method="post" action="/forum/reply/"+thread.thread_id)
				p Reply:
					br
					textarea(
						name="body"
						rows=15
						cols=80
						maxlength=32000
						required
					)
				p
					button(type="submit") Submit