summaryrefslogtreecommitdiff
path: root/views/forum_view.pug
blob: ae5194555fa952239e4d1056f746442ca5b12e4f (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
//- vim:ts=4:sw=4:
doctype html
html
	head
		include head
		title Forum
		meta(http-equiv="refresh" content=900)
		style.
			tbody a { display: block }
			td:nth-child(3) { text-align: right }
	body
		include header
		article
			h1 Forum

			table
				thead
					tr
						th Subject
						th Author
						th Replies
						th Time
				tbody
					each row in threads
						tr
							td: a(href="/forum/thread/"+row.thread_id)= row.subject
							td: a(href="/user/"+row.author_name)= row.author_name
							td= row.replies
							td= row.mtime
				tfoot
					tr
						td(colspan=4)
							if current_page > 1
								| #[a(href="/forum/page/"+(current_page-1)) ←]
								|
							- for (let p=1; p<=page_count && p<=30; ++p)
								if p === current_page
									| (#{p})
									|
								else
									| #[a(href="/forum/page/"+p)= p]
									|
							if current_page < page_count
								| #[a(href="/forum/page/"+(current_page+1)) &#x2192;]

			if user
				p: a(href="/forum/post") New thread