diff options
author | neptune | 2021-03-26 17:39:29 -0300 |
---|---|---|
committer | neptune | 2021-03-26 17:39:29 -0300 |
commit | c6a63f5c141c5f144434e556fcf296be4240e7f9 (patch) | |
tree | a958e4355403e64fa204963620ec09541be11635 /cgi/templates/mobile | |
parent | 0313477c29f101f332b51b2c1ea361320e22bd85 (diff) | |
download | weabot-c6a63f5c141c5f144434e556fcf296be4240e7f9.tar.gz weabot-c6a63f5c141c5f144434e556fcf296be4240e7f9.tar.xz weabot-c6a63f5c141c5f144434e556fcf296be4240e7f9.zip |
Update
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> |