diff options
Diffstat (limited to 'cgi/templates/board.html')
-rw-r--r-- | cgi/templates/board.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cgi/templates/board.html b/cgi/templates/board.html index 6254bd5..6cf10b1 100644 --- a/cgi/templates/board.html +++ b/cgi/templates/board.html @@ -115,7 +115,7 @@ <?py if maxage: ?> <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" target="_blank">Leer antes de postear</a> · <a href="/faq.html" target="_blank">Preguntas frecuentes</a> · <a href="/bai/" target="_blank">Contacto</a></li> + <li>¿Eres nuevo? <a href="/guia.html">Cómo postear</a> · <a href="/faq.html">Preguntas frecuentes</a> · <a href="/bai/">Contacto</a> · <a href="/userconf.html">Configurar</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 id="searchbtn" type="submit" value="Ir"></form></li> </ul> </td> @@ -236,9 +236,9 @@ </a> <?py #endif ?> <?py if post['thumb_width'] and post['parentid']: ?> - <blockquote style="margin-left:#{post['thumb_width']+40}px">#{post['message']}</blockquote> + <blockquote class="msg" style="margin-left:#{post['thumb_width']+40}px">#{post['message']}</blockquote> <?py else: ?> - <blockquote>#{post['message']}</blockquote> + <blockquote class="msg">#{post['message']}</blockquote> <?py #endif ?> <?py if not replythread and post['shortened']: ?> <blockquote class="abbrev">(Post muy largo... Presiona <a href="#{boards_url}#{board}/res/#{post['id'] if not post['parentid'] else post['parentid']}.html##{post['id']}">aquí</a> para verlo completo.)</blockquote> |