diff options
author | Tor Andersson <tor@ccxvii.net> | 2022-08-06 11:58:40 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2022-08-06 11:59:32 +0200 |
commit | 7dfe4ebbf43d16f8ecc36b8ec8100b840dd96148 (patch) | |
tree | bbd032aba2ec31f18b0aa3ed5bf8bafded42b96c /views/user.pug | |
parent | 6a72d2b30417c68e74b77d8dc6699573f9e033d5 (diff) | |
download | server-7dfe4ebbf43d16f8ecc36b8ec8100b840dd96148.tar.gz |
Zap gravatars!
Diffstat (limited to 'views/user.pug')
-rw-r--r-- | views/user.pug | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/views/user.pug b/views/user.pug index c28fbd0..4c26716 100644 --- a/views/user.pug +++ b/views/user.pug @@ -7,17 +7,21 @@ html head include head title= who.name + style. + .about { + white-space: pre-wrap; + font-style: italic; + padding: 8px 12px; + border-left: 4px solid silver; + background-color: whitesmoke; + } body include header article h1= who.name - img.avatar(src=who.avatar width=80 height=80) - if who.about - p(style="white-space:pre-wrap;font-style:italic")= who.about - else - br(clear="left") + p.about= who.about p Member since #{who.ctime}. p Last seen #{who.atime}. |