diff options
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 ?> |