blob: 190018b061e6b94009bb8771a37b9af67bbace76 (
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
51
52
53
54
55
|
//- vim:ts=4:sw=4:
doctype html
html
head
include head
+social(SITE_NAME, "Play historic board games on the web.")
meta(name="keywords" content="wargames, war games, block games")
title= SITE_NAME
style.
div.list {
display: flex;
flex-wrap: wrap;
gap: 12px;
}
div.i {
width: 170px;
height: 200px;
text-align: center;
margin-bottom: 6px;
}
div.t {
text-align: center;
width: 170px;
}
div.t a:not(:hover) {
color: black;
text-decoration: none;
}
div.i img {
box-shadow: 2px 2px 4px 0px rgba(0,0,0,0.5);
}
body
include header
article
h1= SITE_NAME
p #{SITE_NAME} is a website where you can play historic board games online.
p Registration and use is free, and there are no ads.
div.list
each title in TITLE_LIST
unless title.is_hidden
div.item
div.i
+gamecover(title.title_id)
div.t
a(href="/"+title.title_id)= title.title_name
p!= process.env.SITE_INVITE
if !ENABLE_MAIL
p.error Mail notifications disabled.
if !ENABLE_WEBHOOKS
p.error Webhook notifications disabled.
|