diff options
author | Terry | 2019-03-29 01:58:39 -0300 |
---|---|---|
committer | Terry | 2019-03-29 01:58:39 -0300 |
commit | 3a906dcf0051a8d7e2f5320b4affe78d889ffb7b (patch) | |
tree | 165a233475635294103edba19799d875690e7dde /cgi/templates/txt_thread.html | |
parent | 4fcdc3b6a057ea4b0902245ca98a3c94eb2f611d (diff) | |
download | weabot-3a906dcf0051a8d7e2f5320b4affe78d889ffb7b.tar.gz weabot-3a906dcf0051a8d7e2f5320b4affe78d889ffb7b.tar.xz weabot-3a906dcf0051a8d7e2f5320b4affe78d889ffb7b.zip |
Fix + Test + nofollow
Diffstat (limited to 'cgi/templates/txt_thread.html')
-rw-r--r-- | cgi/templates/txt_thread.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cgi/templates/txt_thread.html b/cgi/templates/txt_thread.html index b01a126..4ce6009 100644 --- a/cgi/templates/txt_thread.html +++ b/cgi/templates/txt_thread.html @@ -7,10 +7,10 @@ <a href="#{boards_url}#{board}/">■Volver al BBS■</a> <a href="#{boards_url}#{board}/read/#{thread['timestamp']}/">Hilo completo</a> <?py if thread['length'] > 100: ?> - <a href="#{boards_url}#{board}/read/#{thread['timestamp']}/-100">Primeros 100</a> + <a href="#{boards_url}#{board}/read/#{thread['timestamp']}/-100" rel="nofollow">Primeros 100</a> <?py #endif ?> <?py if thread['length'] > 51: ?> - <a href="#{boards_url}#{board}/read/#{thread['timestamp']}/l50">Últimos 50</a> + <a href="#{boards_url}#{board}/read/#{thread['timestamp']}/l50" rel="nofollow">Últimos 50</a> <?py #endif ?> <a href="#bottom">▼Bajar▼</a> </div> @@ -71,13 +71,13 @@ <a href="#{boards_url}#{board}/">■Volver al BBS■</a> <a href="#{boards_url}#{board}/read/#{thread['timestamp']}/">Hilo completo</a> <?py if prevrange: ?> - <a href="#{boards_url}#{board}/read/#{thread['timestamp']}/#{prevrange}">Anteriores 100</a> + <a href="#{boards_url}#{board}/read/#{thread['timestamp']}/#{prevrange}" rel="nofollow">Anteriores 100</a> <?py #endif ?> <?py if nextrange: ?> - <a href="#{boards_url}#{board}/read/#{thread['timestamp']}/#{nextrange}">Próximos 100</a> + <a href="#{boards_url}#{board}/read/#{thread['timestamp']}/#{nextrange}" rel="nofollow">Próximos 100</a> <?py #endif ?> <?py if thread['length'] > 51: ?> - <a href="#{boards_url}#{board}/read/#{thread['timestamp']}/l50">Últimos 50</a> + <a href="#{boards_url}#{board}/read/#{thread['timestamp']}/l50" rel="nofollow">Últimos 50</a> <?py #endif ?> <a href="#top">▲Subir▲</a> </div> |