diff options
Diffstat (limited to 'cgi/templates/txt_archive.html')
-rw-r--r-- | cgi/templates/txt_archive.html | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/cgi/templates/txt_archive.html b/cgi/templates/txt_archive.html index b1e25db..8d0f49d 100644 --- a/cgi/templates/txt_archive.html +++ b/cgi/templates/txt_archive.html @@ -35,13 +35,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">1-</a> + <a href="#{boards_url}#{board}/read/#{thread['timestamp']}/-100" rel="nofollow">Primeros 100</a> <?py #endif ?> - <?py for i in range(thread['length'] / 100): ?> - <a href="#{boards_url}#{board}/read/#{thread['timestamp']}/#{(i+1)*100+1}-#{(i+2)*100}">#{(i+1)*100+1}-</a> - <?py #endfor ?> <?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> @@ -86,13 +83,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> </form> |