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_list.pug | |
parent | 6a72d2b30417c68e74b77d8dc6699573f9e033d5 (diff) | |
download | server-7dfe4ebbf43d16f8ecc36b8ec8100b840dd96148.tar.gz |
Zap gravatars!
Diffstat (limited to 'views/user_list.pug')
-rw-r--r-- | views/user_list.pug | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/views/user_list.pug b/views/user_list.pug index 26c3f82..703ee4d 100644 --- a/views/user_list.pug +++ b/views/user_list.pug @@ -4,9 +4,6 @@ html head include head title User List - style. - td.avatar { padding: 0; width: 80px; } - td.avatar img { display: block; width: 80px; height: 80px; } body include header article @@ -15,14 +12,12 @@ html table thead tr - th Avatar th Name th Member since th Last seen tbody each row in user_list tr - td.avatar: img(src=row.avatar) td.name: a(href="/user/"+row.name)= row.name td= row.ctime td= row.atime |