diff options
author | Choom | 2023-01-15 03:12:48 -0300 |
---|---|---|
committer | Choom | 2023-01-16 14:37:04 -0300 |
commit | 4c31093827f57394563de037a21143407586e384 (patch) | |
tree | b16abeb0dc76e48e11f8c0264fa39ce6294458d2 /cgi/templates/mobile | |
parent | 44f7397cf7a7596edea78864122b78d59983701e (diff) | |
download | weabot-4c31093827f57394563de037a21143407586e384.tar.gz weabot-4c31093827f57394563de037a21143407586e384.tar.xz weabot-4c31093827f57394563de037a21143407586e384.zip |
Autorefresh en home
Diffstat (limited to 'cgi/templates/mobile')
-rw-r--r-- | cgi/templates/mobile/latest.html | 4 | ||||
-rw-r--r-- | cgi/templates/mobile/newest.html | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/cgi/templates/mobile/latest.html b/cgi/templates/mobile/latest.html index 50fae25..8156e69 100644 --- a/cgi/templates/mobile/latest.html +++ b/cgi/templates/mobile/latest.html @@ -8,13 +8,13 @@ <div class="list"> <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> + <a href="/cgi/mobileread${thread['url']}">#{thread['content']}<div>${thread['board_name']} <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> + <a href="/cgi/mobileread${thread['url']}">#{thread['content']}<div>${thread['board_name']} <span>R:<span>#{int(thread['length'])-1}</span></span></div></a> <?py #endfor ?> </div> </body> diff --git a/cgi/templates/mobile/newest.html b/cgi/templates/mobile/newest.html index 37fd67f..76da88b 100644 --- a/cgi/templates/mobile/newest.html +++ b/cgi/templates/mobile/newest.html @@ -7,8 +7,8 @@ <div class="bar"><a href="//m.bienvenidoainternet.org">Secciones</a><a href="/cgi/mobilehome">Hilos activos</a><a href="/cgi/mobilenewest" class="sel">Nuevos hilos</a></div> <div class="list"> <?py for thread in newthreads: ?> - <a href="/cgi/mobileread${thread['url']}">#{thread['content']}<div>${thread['board_fulln']}</div></a> + <a href="/cgi/mobileread${thread['url']}">#{thread['content']}<div>${thread['board_name']}</div></a> <?py #endfor ?> </div> </body> -</html>
\ No newline at end of file +</html> |