blob: a65f9bedfbc37644541bbdaf0e71f95cdd0ef872 (
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
|
//- vim:ts=4:sw=4:
- let open_games = games.filter(game => game.status === 0)
- let active_games = games.filter(game => game.status === 1)
- let finished_games = games.filter(game => game.status === 2)
doctype html
html
head
include head
title= SITE_NAME
if active_games.length > 0
meta(http-equiv="refresh" content=600)
body
include header
article.wide
h1 Your games
if open_games.length > 0
h2 Open
+gamelist(open_games)
p
a(href="/create") Create a new game
if active_games.length > 0
h2 Active
+gamelist(active_games)
if finished_games.length > 0
h2 Recently finished
+gamelist(finished_games)
if open_games.length === 0 && active_games.length === 0 && finished_games.length === 0
p Nothing here.
p
a(href="/games/finished") All your finished games
|