diff options
author | Tor Andersson <tor@ccxvii.net> | 2025-02-14 00:45:36 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2025-02-14 12:27:41 +0100 |
commit | 0b9c2f44c58f7750f03f218da8c2444cb8c987f7 (patch) | |
tree | 6cac8b0ec12076b21f7fee284037343eee20fabe /views/profile.pug | |
parent | ccb823bb740ed1018560a2077673f7293c0789e4 (diff) | |
download | server-0b9c2f44c58f7750f03f218da8c2444cb8c987f7.tar.gz |
Link to own user page from profile.
Diffstat (limited to 'views/profile.pug')
-rw-r--r-- | views/profile.pug | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/views/profile.pug b/views/profile.pug index 391fca0..422f4d1 100644 --- a/views/profile.pug +++ b/views/profile.pug @@ -9,7 +9,7 @@ html article h1= SITE_NAME - p Welcome, #{user.name}! + p Welcome, <a class="black" href="/user/#{user.name}">#{user.name}</a>! p Your mail address is #{user.mail} if ENABLE_MAIL |