- 6812442D036EF3F18CD4F148F2E7FE1B5833AFD87555625293783246B10224E946A7C89FB8B762B82FD02B7A1B1A86ABD6E1B006B095B254AC9EA446F3ACD003
+ 68FB1BD53530A683F6796169325527D8A720CC306F143C276EB7677720DECED935D780117AD3E75E9BAED2AACF91FD70812050C35ED09E94B684308F5D8006CC
logotron/templates/layout.html
(1 . 161)(1 . 59)
1203 <html>
1204
1205 <head>
1206 <title>
1207 {% block title %}
1208 {% endblock %}
1209 </title>
1210 <title>{% block title %}{% endblock %}</title>
1211
1212 <meta http-equiv='Content-Type' content='text/html; charset=UTF-8' />
1213 <meta name='viewport' content='width=device-width, initial-scale=1' />
1214 <style type='text/css'>
1215 table.chantable {
1216 margin-left:auto;
1217 margin-right:auto;
1218 padding : 5px;
1219 border : 1px solid black;
1220 border-spacing : 25px 0;
1221 }
1222
1223 .nick {
1224 font-weight: bold;
1225 text-decoration: none;
1226 color: black;
1227 }
1228
1229 .nick:visited {
1230 color: black;
1231 }
1232
1233 .re {
1234 display: none;
1235 }
1236
1237 div:hover .re {
1238 display: inline;
1239 }
1240
1241 div {
1242 }
1243
1244 .bot,
1245 .bot .nick,
1246 .bot a {
1247 color: #777;
1248 font-weight: normal;
1249 }
1250
1251 .loglines {
1252 word-wrap: break-word;
1253 }
1254
1255 .loglines div:nth-child(2n) {
1256 }
1257
1258 .loglines div:nth-child(2n+1) {
1259 background: #f5f5f5;
1260 }
1261
1262 .mention {
1263 background: lightyellow !important;;
1264 }
1265
1266 :target,
1267 .active {
1268 background: lightyellow !important;;
1269 }
1270
1271 img.inline {
1272 margin: 0.5em auto 1em auto;
1273 display: block;
1274 border: 1px solid black;
1275 width: 34em;
1276 }
1277
1278 img.hist {
1279 margin: 0.5em auto 1em auto;
1280 }
1281
1282 .annotations a {
1283 text-decoration: none;
1284 }
1285
1286 .navbarblock {
1287 margin-bottom: 1em;
1288 }
1289
1290 .navbar {
1291 float:left;
1292 }
1293
1294 .jump {
1295 float:right;
1296 }
1297
1298 .highlight {
1299 background: yellow !important;;
1300 padding: 1px;
1301 }
1302
1303 </style>
1304 <link rel="stylesheet" href="{{ css_url }}" />
1305 </head>
1306
1307 <body>
1308 <a name="head"></a>
1309
1310 <a name="head">
1311 <div class="chan-nav">
1312 {% include 'chan-nav-table.html' %}
1313
1314 <p>
1315 <table align="center" style="width:100%">
1316 <tr>
1317 <td>
1318 {% if chan != 'all' %}
1319 {{ gen_chanlist( chan, show_all ) | safe }}
1320 {% else %}
1321 {{ gen_chanlist( chan, True ) | safe }}
1322 {% endif %}
1323 </td>
1324 </tr>
1325 </table>
1326
1327 </p>
1328
1329 {% if chan != 'all' %}
1330 <div align="center">
1331 <small>
1332 {% if chan != 'all' %}
1333 <div class="chan-filters">
1334 {% if not show_all %}
1335 <a href="/log/{{ chan }}?all=1">
1336 <i>Show Idle (>{{ idle_day }} d.) Chans</i>
1337 </a>
1338 <a href="?all=1">Show Idle (>{{ idle_day }} d.) Chans</a>
1339 {% else %}
1340 <a href="/log/{{ chan }}">
1341 <i>Hide Idle (>{{ idle_day }} d.) Chans</i>
1342 </a>
1343 <a href="?all=0">Hide Idle (>{{ idle_day }} d.) Chans</a>
1344 {% endif %}
1345 </small>
1346 </div>
1347 {% endif %}
1348 </div>
1349 {% endif %}
1350
1351 <hr>
1352
1353 <form align="center" id="search" method='get' action='/log-search'>
1354 <input type='text' name='q' value='{{ query }}' maxlength='2048' spellcheck='false' size='55' value='' />
1355 {% if chan != 'all' %}
1356 <button type='submit' name='chan' value='{{chan}}'>search {{chan}}</button>
1357 {% endif %}
1358 <button type='submit' name='chan' value='all'>search all chans</button>
1359 </form>
1360 <div class="content">
1361 <hr />
1362
1363 <hr>
1364
1365 {% block body %}{% endblock %}
1366 <form class="search-form" id="search" method='get' action='/log-search'>
1367 <input type='text' class="seach-query-input" name='q' value='{{ query }}' maxlength='2048' spellcheck='false' size='55' value='' />
1368 <span class="search-form-buttons">
1369 {% if chan != 'all' %}
1370 <button type='submit' name='chan' value='{{chan}}'>search {{chan}}</button>
1371 {% endif %}
1372 <button type='submit' name='chan' value='all'>search all chans</button>
1373 </span>
1374 </form>
1375
1376 <hr>
1377 <hr />
1378
1379 <div align="center">
1380 {% if chan != 'all' %}<a href="https://kiwiirc.com/nextclient/irc.freenode.net/{{ chan }}">Visit #{{ chan }} as Guest</a> | <a href="/rnd/{{ chan }}">Random({{ chan }})</a> | {% endif %}<a href="{{ url_for('static', filename='log_db.gz') }}">Download hourly DB snapshot</a> | <a href="http://www.loper-os.org/?p=3452">Get Source Code</a>
1381 {% block body %}{% endblock %}
1382
1383 <hr />
1384 </div>
1385
1386 <a name="tail">
1387 <div class="footer">
1388 {% if chan != 'all' %}
1389 <a href="https://kiwiirc.com/nextclient/irc.freenode.net/{{ chan }}">Visit #{{ chan }} as Guest</a> |
1390 <a href="/rnd/{{ chan }}">Random({{ chan }})</a> |
1391 {% endif %}
1392 <a href="{{ url_for('static', filename='log_db.gz') }}">Download hourly DB snapshot</a> |
1393 <a href="http://www.loper-os.org/?p=3452">Get Source Code</a>
1394 </div>
1395
1396 <a name="tail"></a>
1397 </body>
1398
1399 </html>