blob: 60eac7b63cbeb1f7e058516c27f08da76dd55214 (
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
48
49
50
|
//- vim:ts=4:sw=4:
- let open_games = games0.filter(game => game.status === 0 && !game.is_full)
- let ready_games = games0.filter(game => game.status === 0 && game.is_full)
- let replacement_games = games1.filter(game => game.status === 1 && !game.is_full)
- let active_games = games1.filter(game => game.status === 1 && game.is_full)
- let finished_games = games2
doctype html
html
head
include head
+social(title.title_name, "Play " + title.title_name + " on the web.", title.title_id)
title= title.title_name
if user
meta(http-equiv="refresh" content=900)
body
include header
article
h1= title.title_name
div.logo
+gamecover(title.title_id)
| !{ about_html }
p Read more about the game on #[a(href="https://boardgamegeek.com/boardgame/"+title.bgg) boardgamegeek.com].
h2 Open
if open_games.length > 0
+gamelist(open_games, true)
else
p No open games.
if replacement_games.length > 0
h2 Need replacement
+gamelist(replacement_games, true)
p
a(href="/create/"+title.title_id) Create a new game
if ready_games.length > 0
h2 Ready
+gamelist(ready_games, true)
if active_games.length > 0
h2 Active
+gamelist(active_games, true)
if finished_games.length > 0
h2 Recently finished
+gamelist(finished_games, true)
|