-
+ 587CCF877BA1BFF6DFA4547EBFED8FAE1B071CF243FA4BD77F56F91C0A1B6A692137FF9DC5B458C34783AC632BCB83ABAC664073AB82D79649709810F4CF9C0A
logotron/templates/layout.html
(0 . 0)(1 . 127)
1211 <html>
1212
1213 <head>
1214 <title>
1215 {% block title %}
1216 {% endblock %}
1217 </title>
1218 <meta http-equiv='Content-Type' content='text/html; charset=UTF-8' />
1219 <meta name='viewport' content='width=device-width, initial-scale=1' />
1220 <style type='text/css'>
1221 table.chantable {
1222 margin-left:auto;
1223 margin-right:auto;
1224 padding : 5px;
1225 border : 1px solid black;
1226 border-spacing : 25px 0;
1227 }
1228
1229 .nick {
1230 font-weight: bold;
1231 text-decoration: none;
1232 color: black;
1233 }
1234
1235 .nick:visited {
1236 color: black;
1237 }
1238
1239 .re {
1240 display: none;
1241 }
1242
1243 div:hover .re {
1244 display: inline;
1245 }
1246
1247 div {
1248 white-space: pre-wrap;
1249 }
1250
1251 .bot,
1252 .bot .nick,
1253 .bot a {
1254 color: #777;
1255 font-weight: normal;
1256 }
1257
1258 .mention {
1259 background: lightyellow;
1260 }
1261
1262 :target,
1263 .active {
1264 background: lightyellow;
1265 }
1266
1267 img.inline {
1268 margin: 0.5em auto 1em auto;
1269 display: block;
1270 border: 1px solid black;
1271 width: 34em;
1272 }
1273
1274 img.hist {
1275 margin: 0.5em auto 1em auto;
1276 }
1277
1278 .annotations a {
1279 text-decoration: none;
1280 }
1281
1282 #navbar {
1283 margin-bottom: 1em;
1284 }
1285
1286 .highlight {
1287 background: yellow;
1288 padding: 1px;
1289 }
1290
1291 </style>
1292 </head>
1293
1294 <body>
1295
1296 <p>
1297 <table align="center">
1298 <tr>
1299 <td>
1300 <a href="http://nosuchlabs.com">
1301 <img src="http://logs.nosuchlabs.com/static/snsa_small.jpg"
1302 align="left"
1303 alt="No Such lAbs"/>
1304 </a>
1305 </td>
1306
1307 <td>
1308 {{ gen_chanlist( chan ) | safe }}
1309 </td>
1310
1311 <td>
1312 <a href="http://pizarroisp.net">
1313 <img src="http://logs.nosuchlabs.com/static/piz_small.jpg"
1314 align="right"
1315 alt="Pizarro"/>
1316 </a>
1317 </td>
1318 </tr>
1319 </table>
1320
1321 </p>
1322
1323 <hr>
1324
1325 <form align="center" id="search" method='get' action='/log-search'><span><a href='/log/{{chan}}'>log</a></span>
1326 <input type='text' name='q' value='{{ query }}' maxlength='2048' spellcheck='false' size='55' value='' />
1327 <input type='hidden' name='chan' value='{{chan}}'>
1328 <input type='submit' value='search {{chan}}' />
1329 </form>
1330
1331 <hr>
1332
1333 {% block body %}{% endblock %}
1334
1335 </body>
1336
1337 </html>