blob: 785ee911643e2da549ce8ba7fe51b7cae2daa379 (
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
|
//- vim:ts=4:sw=4:
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=600)
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
+gametable(0,open_games,1)
if replacement_games.length > 0
h2 Need replacement
+gametable(0, replacement_games)
p
a(href="/create/"+title.title_id) Create a new game
if ready_games.length > 0
h2 Ready to start
+gametable(0,ready_games,1)
if active_games.length > 0
h2 Active
+gametable(1,active_games,1)
if finished_games.length > 0
h2 Finished
+gametable(2,finished_games,1)
|