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/home.html | |
parent | 0313477c29f101f332b51b2c1ea361320e22bd85 (diff) | |
download | weabot-c6a63f5c141c5f144434e556fcf296be4240e7f9.tar.gz weabot-c6a63f5c141c5f144434e556fcf296be4240e7f9.tar.xz weabot-c6a63f5c141c5f144434e556fcf296be4240e7f9.zip |
Update
Diffstat (limited to 'cgi/templates/home.html')
-rw-r--r-- | cgi/templates/home.html | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/cgi/templates/home.html b/cgi/templates/home.html index ffd9c4e..fb06465 100644 --- a/cgi/templates/home.html +++ b/cgi/templates/home.html @@ -7,7 +7,7 @@ <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Bienvenido a Internet BBS/IB</title> <link rel="shortcut icon" href="favicon.ico" /> - <link rel="stylesheet" type="text/css" href="/home.css?v=1" /> + <link rel="stylesheet" type="text/css" href="/home.css?v=2" /> <link rel="stylesheet" type="text/css" href="/home_ib.css?v=1" title="IB" /> <link rel="alternate stylesheet" type="text/css" href="/home_vintage.css?v=1" title="Vintage" /> <link rel="alternate stylesheet" type="text/css" href="/home_bbs.css?v=1" title="BBS" /> @@ -31,7 +31,6 @@ <a href="/tech/">Tecnología</a> <a href="/juegos/">Juegos</a> <a href="/musica/">Música</a> - <a href="/tv/">TV y Cine</a> <a href="/letras/">Humanidades</a> </div> <div class="cat"> @@ -69,8 +68,16 @@ <tr> <td rowspan="2" class="tab"> <h2 id="newposts">Hilos activos <div id="counter"></div></h2> + <h4>BBS</h4> <div id="postlist" class="threads"> - <?py for thread in latest_age: ?> + <?py for thread in latest_age_bbs: ?> + <a href="${thread['url']}" class="thread"><span class="brd">[${thread['board_name']}]</span> <span class="cont">#{thread['content']}</span> <span class="rep">(${thread['length']})</span></a> + <?py #endfor ?> + </div> + <hr /> + <h4>IB</h4> + <div id="postlist" class="threads"> + <?py for thread in latest_age_ib: ?> <a href="${thread['url']}" class="thread"><span class="brd">[${thread['board_name']}]</span> <span class="cont">#{thread['content']}</span> <span class="rep">(${thread['length']})</span></a> <?py #endfor ?> </div> |