diff options
Diffstat (limited to 'cgi/templates/mobile')
-rw-r--r-- | cgi/templates/mobile/latest.html | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/cgi/templates/mobile/latest.html b/cgi/templates/mobile/latest.html index 615b21c..91c3514 100644 --- a/cgi/templates/mobile/latest.html +++ b/cgi/templates/mobile/latest.html @@ -6,9 +6,16 @@ </div> <div class="bar"><a href="//m.bienvenidoainternet.org">Secciones</a><a href="/cgi/mobilehome" class="sel">Hilos activos</a><a href="/cgi/mobilenewest">Nuevos hilos</a></div> <div class="list"> - <?py for thread in latest_age: ?> + <h3 style="text-align:center">BBS</h3> + <?py for thread in latest_age_bbs: ?> + <a href="/cgi/mobileread${thread['url']}">#{thread['content']}<div>${thread['board_fulln']} <span>R:<span>#{int(thread['length'])-1}</span></span></div></a> + <?py #endfor ?> +</div> +<div class="list"> + <h3 style="text-align:center">IB</h3> + <?py for thread in latest_age_ib: ?> <a href="/cgi/mobileread${thread['url']}">#{thread['content']}<div>${thread['board_fulln']} <span>R:<span>#{int(thread['length'])-1}</span></span></div></a> <?py #endfor ?> </div> </body> -</html>
\ No newline at end of file +</html> |