diff options
author | Choom | 2023-01-23 18:09:26 -0300 |
---|---|---|
committer | Choom | 2023-01-24 09:51:42 -0300 |
commit | c00e0f9f07827630ccba2cf4ac8bf0793d0ba930 (patch) | |
tree | 31e6af72056a8369b2d25b50009bcb7a072d5682 /cgi/templates/txt_board.html | |
parent | 9bd8d1e527cf90ef8033b8455a96e5caf92f02bd (diff) | |
download | weabot-c00e0f9f07827630ccba2cf4ac8bf0793d0ba930.tar.gz weabot-c00e0f9f07827630ccba2cf4ac8bf0793d0ba930.tar.xz weabot-c00e0f9f07827630ccba2cf4ac8bf0793d0ba930.zip |
Separando .trip de .name
Diffstat (limited to 'cgi/templates/txt_board.html')
-rw-r--r-- | cgi/templates/txt_board.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cgi/templates/txt_board.html b/cgi/templates/txt_board.html index 8d01490..843625a 100644 --- a/cgi/templates/txt_board.html +++ b/cgi/templates/txt_board.html @@ -56,15 +56,15 @@ <h4>#{post['num']} : <?py if post['email']: ?> <?py if post['tripcode']: ?> - <a href="mailto:#{post['email']}"><span class="name"><b>#{post['name']}</b> #{post['tripcode']}</span></a> + <a class="email" href="mailto:#{post['email']}"><span class="name">#{post['name']}</span> <span class="trip">#{post['tripcode']}</span></a> <?py else: ?> - <a href="mailto:#{post['email']}"><span class="name"><b>#{post['name']}</b></span></a> + <a class="email" href="mailto:#{post['email']}"><span class="name">#{post['name']}</span></a> <?py #endif ?> <?py else: ?> <?py if post['tripcode']: ?> - <span class="name"><b>#{post['name']}</b> #{post['tripcode']}</span> + <span class="name">#{post['name']}</span> <span class="trip">#{post['tripcode']}</span> <?py else: ?> - <span class="name"><b>#{post['name']}</b></span> + <span class="name">#{post['name']}</span> <?py #endif ?> <?py #endif ?> : <span class="date" data-unix="#{post['timestamp']}">#{post['timestamp_formatted']}</span> |