diff options
Diffstat (limited to 'cgi/templates')
| -rw-r--r-- | cgi/templates/trash.html | 115 | 
1 files changed, 113 insertions, 2 deletions
| diff --git a/cgi/templates/trash.html b/cgi/templates/trash.html index c334fa6..1bffc08 100644 --- a/cgi/templates/trash.html +++ b/cgi/templates/trash.html @@ -1,4 +1,115 @@ -<h1>Basural</h1> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<title>El Basural @ Bienvenido a Internet</title> +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> +<meta name="viewport" content="width=device-width, initial-scale=1.0" /> +<style> +body { +	background: #008833; +  text-shadow: 0 0 15px darkgreen; +  font-size: 1em; +  font-family: monospace; +  margin: 0; +} +#title { +  margin: 8px; +  font-size: 4em; +  color: green; +  text-shadow: 2px 2px #000, 0 0 5px darkgreen, +    -3px -3px 5px brown, 3px 3px 5px yellow; +} +#title small { +  font-size: 0.6em; +} +#title img { +  vertical-align: bottom; +} +hr { +  border: 0; +  border-top: 4px dashed #010168; +  margin: 1em 0; +} +table { +  border-spacing: 8px; +} +th, +td { +  border-right: 1px solid #8a1f1f; +  border-bottom: 1px solid #8a1f1f; +  padding: 6px; +} +th { +	background: #668800; +} +td:nth-child(odd) { +  background: #76ec00; +} +td:nth-child(even) { +  background: #00d20d; +} +#back { +  text-align: center; +  font-size: 2em; +} +#back_sm, +#back a { +  display: block; +  margin-bottom: 0.2em; +  color: #fb008d; +} +#back_sm { +  margin: 8px; +  font-weight: bold; +} +#foot { +  text-align: center; +  margin: 1em 0.25em; +  color: #999; +} +</style> +</head> +<body> +<a href="/bai.html" id="back_sm"><&<<<<lt; Volver</a> + +<div id="title"> +  <img src="/basura1.gif" style="width:72px;height:130px;" /> +  <span>El Basural +  <small>@ Bienvenido a Internet</small></span> +  <img src="/basura2.gif" style="width:194px;height:135px;" /> +</div> + +<hr /> + +<table> +  <tr> +    <th>Sección</th> +    <th>Fecha</th> +    <th>Mensaje</th> +  </tr>  <?py for post in posts: ?> -#{post['timestamp_formatted']} - #{post['board']} - #{post['message']}<br><br> +  <tr> +    <td>#{post['board']}</td> +    <td>#{post['timestamp_formatted']}</td> +    <td>#{post['message']}</td> +  </tr>  <?py #endfor ?> +</table> + +<hr /> + +<div id="back"> +  <a href="/bai.html"><< Volver <<</a> +  <img src="/basura3.gif" style="width:200px;height:260px;" /> +  <img src="/basura3.gif" style="width:200px;height:260px;" /> +  <img src="/basura3.gif" style="width:200px;height:260px;" /> +</div> + +<hr /> + +<div id="foot"> +  <img src="/meido.png" style="width:152px;height:214px;vertical-align:middle;" /> +  B.a.I. - Desde el 2010 eliminando mierda...  +</div> +</body> +</html> | 
