diff options
Diffstat (limited to 'cgi/templates/mobile/board.html')
-rw-r--r-- | cgi/templates/mobile/board.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cgi/templates/mobile/board.html b/cgi/templates/mobile/board.html index 70b8461..8466c8f 100644 --- a/cgi/templates/mobile/board.html +++ b/cgi/templates/mobile/board.html @@ -1,13 +1,13 @@ <?py include('templates/mobile/base_top.html') ?> -<body class="img"><a name="top"></a> +<body class="img" data-brd="#{board}"><a name="top"></a> <div class="nav"><div><a href="//m.bienvenidoainternet.org">Home</a><a href="#{cgi_url}mobile/#{board}/">Volver</a><a href="#form">▼</a></div></div> <?py for thread in threads: ?> <div id="thread"> <?py for post in thread['posts']: ?> <?py if post['IS_DELETED'] == "1": ?> - <div class="pst"><h3 class="del"><a name="#{post['id']}"></a>No.#{post['id']} eliminado por el usuario.</h3></div> + <div class="pst"><h3 class="del"><a name="#{post['id']}"></a>No.#{post['id']} eliminado por usuario.</h3></div> <?py elif post['IS_DELETED'] == "2": ?> - <div class="pst"><h3 class="del"><a name="#{post['id']}"></a>No.#{post['id']} eliminado por miembro del staff.</h3></div> + <div class="pst"><h3 class="del"><a name="#{post['id']}"></a>No.#{post['id']} eliminado por staff.</h3></div> <?py else: ?> <?py if post['parentid'] == "0": ?> <div class="first"><h1>#{post["subject"]} <span>(#{thread['length']})</span></h1> |