diff options
author | Tor Andersson <tor@ccxvii.net> | 2025-05-01 22:04:10 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2025-05-12 00:21:06 +0200 |
commit | 9f67e66b83d158b99582c2984fc253b6e6abd537 (patch) | |
tree | 9ccd06c22afdafa4607c012f4b99deeb0b87a3c8 /views/title.pug | |
parent | 1eaa2ef7ca02e1534ba5f1baefdc794f675065e0 (diff) | |
download | server-9f67e66b83d158b99582c2984fc253b6e6abd537.tar.gz |
Put account management pages under "/account" URL prefix.
Set logged in user in res.locals for use in pug templates.
Tweak verification flow.
Require password to change name and mail.
Show user statistics on profile (use pug mixin).
Remove "api" prefix on many routes.
Diffstat (limited to 'views/title.pug')
-rw-r--r-- | views/title.pug | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/views/title.pug b/views/title.pug new file mode 100644 index 0000000..32837e9 --- /dev/null +++ b/views/title.pug @@ -0,0 +1,41 @@ +//- 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 + body + include header + article + h1= title.title_name + + div.logo + +gamecover(title.title_id) + + | !{ title.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 right now. + + p + a(href="/create/"+title.title_id) Create a new game + + if replacement_games.length > 0 + h2 Open (missing players) + +gamelist(replacement_games, true) + + +tourlist(seeds, active_pools, finished_pools) + + if active_games.length > 0 + h2 Recently active + +gamelist(active_games, true) + + if finished_games.length > 0 + h2 Recently finished + +gamelist(finished_games, true) |