diff options
Diffstat (limited to 'cgi/templates/board.html')
-rw-r--r-- | cgi/templates/board.html | 24 |
1 files changed, 15 insertions, 9 deletions
diff --git a/cgi/templates/board.html b/cgi/templates/board.html index 486c380..2f02408 100644 --- a/cgi/templates/board.html +++ b/cgi/templates/board.html @@ -35,10 +35,10 @@ </center> <?py #endif ?> <?py if oek_finish: ?> -<center style="margin:0.5em 0;"> +<center style="margin:0.5em 0"> <table><tr><td> <?py if oek_finish == "no": ?> - <div style="font-size:xx-large;margin:0.25em;">No hay dibujo</div> + <div style="font-size:xx-large;margin:0.25em">No hay dibujo</div> <?py else: ?> <img src="#{images_url}#{board}/temp/#{oek_finish}.png?ts=#{ts}" /> <?py #endif ?> @@ -51,7 +51,7 @@ <input type="hidden" name="parent" value="#{replythread}" /> <input type="hidden" name="default_subject" value="#{default_subject}" /> <?py #endif ?> - <div style="display:none;">Trampa: <input type="text" name="name" size="25" /> <input type="text" name="email" size="25" /></div> + <div style="display:none">No tocar: <input type="text" name="name" size="25" /> <input type="text" name="email" size="25" /></div> <table class="postform"> <?py if not disable_name: ?> <tr> @@ -87,7 +87,7 @@ <td class="postblock">Archivo</td> <td> <input type="file" name="file" id="file" accesskey="f" /> - <span id="filepreview" style="display:none;"></span> + <span id="filepreview" style="display:none"></span> <?py if allow_spoilers: ?> <label>[<input type="checkbox" name="spoil" id="spoil" />Spoiler]</label> <?py #endif ?> @@ -116,7 +116,7 @@ <li>Los hilos son automáticamente eliminados a los <b>#{maxage}</b> días de edad.</li> <?py #endif ?> <li>¿Eres nuevo? <a href="/guia.html">Leer antes de postear</a> · <a href="/faq.html">Preguntas frecuentes</a> · <a href="/bai/">Contacto</a></li> - <li id="search"><form method="get" action="/tools/search.py" style="display:inline-block;"><input type="hidden" name="board" value="${board}"><label for="searchin">Buscar: </label><input type="text" name="q" id="searchin" value="" size="10"> <input type="submit" value="Ir"></form> + <li id="search"><form method="get" action="/tools/search.py" style="display:inline-block"><input type="hidden" name="board" value="${board}"><label for="searchin">Buscar: </label><input type="text" name="q" id="searchin" value="" size="10"> <input type="submit" value="Ir"></form> <?py if not force_css: ?> · <span>Estilo: <select id="styles"> <?py for title in styles: ?><option value="#{title}">#{title}</option><?py #endfor ?> @@ -140,7 +140,7 @@ <?py for thread in threads: ?> <div id="t#{thread['id']}" class="thread" data-length="#{thread['length']}"> <?py if not replythread: ?> - <span class="unhide" style="display:none;">Hilo <a href="#{boards_url}#{board}/res/#{thread['id']}.html">#{thread['id']}</a> oculto. <a class="tt" href="#">Ver hilo</a></span> + <span class="unhide" style="display:none">Hilo <a href="#{boards_url}#{board}/res/#{thread['id']}.html">#{thread['id']}</a> oculto. <a class="tt" href="#">Ver hilo</a></span> <?py #endif ?> <?py for post in thread['posts']: ?> <?py if not post['IS_DELETED']: ?> @@ -184,9 +184,15 @@ <?py #endif ?> </label> <?py if post['email']: ?> - <a href="mailto:#{post['email']}"><span class="name"><b>#{post['name']}</b> #{post['tripcode'] if post['tripcode'] else ''}</span></a> + <a href="mailto:#{post['email']}"><span class="name"> + <b>#{post['name']}</b> + #{post['tripcode'] if post['tripcode'] else ''} + </span></a> <?py else: ?> - <span class="name"><b>#{post['name']}</b> #{post['tripcode'] if post['tripcode'] else ''}</span> + <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: ?> @@ -231,7 +237,7 @@ </a> <?py #endif ?> <?py if post['thumb_width'] and post['parentid']: ?> - <blockquote style="margin-left:#{post['thumb_width']+40}px;">#{post['message']}</blockquote> + <blockquote style="margin-left:#{post['thumb_width']+40}px">#{post['message']}</blockquote> <?py else: ?> <blockquote>#{post['message']}</blockquote> <?py #endif ?> |