diff options
| -rw-r--r-- | template/chat.st | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/template/chat.st b/template/chat.st index 8a02ccd..239f5b9 100644 --- a/template/chat.st +++ b/template/chat.st @@ -44,17 +44,17 @@ $banner()$ <div id="loghead"></div> </div> <div id="userList"> -$users: { u | + $users: { u | <div class="username"><a href="/u/$u.nick$" target="_blank"> - $if(u.avatar)$ - <img src="$u.avatar$" width="50" height="50"> - $else$ - <img src="/static/img/noinfo.png"> - $endif$ + $if(u.avatar)$ + <img src="$u.avatar$" width="50" height="50"> + $else$ + <img src="/static/img/noinfo.png"> + $endif$ $u.nick$</a><br> </div> -}$ - </div> + }$ + </div> <div id="messagePane"> <div id="messageList"> $messages: { m | |
