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_thread.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_thread.html')
-rw-r--r-- | cgi/templates/txt_thread.html | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/cgi/templates/txt_thread.html b/cgi/templates/txt_thread.html index ad1bce6..8375d27 100644 --- a/cgi/templates/txt_thread.html +++ b/cgi/templates/txt_thread.html @@ -38,17 +38,18 @@ <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> + <?py #endif ?> + : <span class="date" data-unix="#{post['timestamp']}">#{post['timestamp_formatted']}</span> <?py if post['posterid']: ?> <span class="hash">ID:#{post['posterid']}</span> <?py #endif ?> |