diff options
author | Tor Andersson <tor@ccxvii.net> | 2021-12-31 22:05:18 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2021-12-31 22:24:47 +0100 |
commit | 1f060bf2ef8b3d475b0d37d32bab73e1a601ea11 (patch) | |
tree | d8aee9faff64c5690e1a4c3b21e99e6de443fcdb /views/profile.pug | |
parent | 119675c218c27a33d03ab2f01624486aec6ecdee (diff) | |
download | server-1f060bf2ef8b3d475b0d37d32bab73e1a601ea11.tar.gz |
Parameterize site name and domain.
Diffstat (limited to 'views/profile.pug')
-rw-r--r-- | views/profile.pug | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/views/profile.pug b/views/profile.pug index 77cc597..6fb777a 100644 --- a/views/profile.pug +++ b/views/profile.pug @@ -3,13 +3,13 @@ doctype html html head include head - title Rally the Troops! + title= SITE_NAME if active_games.length > 0 meta(http-equiv="refresh" content=300) body include header article - h1 Rally the Troops! + h1= SITE_NAME a(href="https://gravatar.com/"): img.avatar(src=avatar) p Welcome, #{user.name}! |