diff options
author | Choom | 2022-12-30 04:33:10 -0300 |
---|---|---|
committer | Choom | 2023-01-09 17:53:50 -0300 |
commit | 65fd303962d7744a5268db83a72fe66c7378565a (patch) | |
tree | 423403211c6006ed9eeaf101f8856ace78e81ffe /cgi/templates/board.jp.html | |
parent | b7e1bbd2c15961f3871e02cb3657cecc5f72b45f (diff) | |
download | weabot-65fd303962d7744a5268db83a72fe66c7378565a.tar.gz weabot-65fd303962d7744a5268db83a72fe66c7378565a.tar.xz weabot-65fd303962d7744a5268db83a72fe66c7378565a.zip |
Devolviendo previews
Diffstat (limited to 'cgi/templates/board.jp.html')
-rw-r--r-- | cgi/templates/board.jp.html | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/cgi/templates/board.jp.html b/cgi/templates/board.jp.html index ffb9d67..b33e42c 100644 --- a/cgi/templates/board.jp.html +++ b/cgi/templates/board.jp.html @@ -186,9 +186,15 @@ <?py #endif ?> </label> <?py if post['email']: ?> - Name <a href="mailto:#{post['email']}"><span class="name"><b>#{post['name']}</b> #{post['tripcode'] if post['tripcode'] else ''}</span></a> + Name <a href="mailto:#{post['email']}"><span class="name"> + <b>#{post['name']}</b> + #{post['tripcode'] if post['tripcode'] else ''} + </span></a> <?py else: ?> - Name <span class="name"><b>#{post['name']}</b> #{post['tripcode'] if post['tripcode'] else ''}</span> + Name <span class="name"> + <b>#{post['name']}</b> + #{post['tripcode'] if post['tripcode'] else ''} + </span> <?py #endif ?> <span class="date" data-unix="#{post['timestamp']}">#{post['timestamp_formatted']}</span> <?py if replythread: ?> |