blob: 76da88b43a4ad0904e757bcd826eb1b93c882874 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?py include('templates/mobile/base_top.html') ?>
<body class="txt">
<div class="top">
<a href="/movil.html"><img src="#{static_url}css/img/0info.png" /><br />Info</a>
Bienvenido a Internet Móvil
</div>
<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_name']}</div></a>
<?py #endfor ?>
</div>
</body>
</html>
|