blob: a40f072770c786c2d33807e5920a685538eff296 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>{{channel}} {{date}} ({{network}}) - tirclogv</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style.css">
<script src="/log.js"></script>
<link rel="icon" type="image/png" href="/favicon.png">
</head>
<body>
<div id="gridwrapper" data-page="withheader">
<header>
<a href="/" class="hdritem hdritem-home">Home</a>
{{network}}/{{channel}}:
<a href="/log/{{&alias}}" class="hdritem hdritem-view">Logs</a>
<a href="/cal/{{&alias}}" class="hdritem hdritem-view">Calendar</a>
</header>
<main>
<h1>Logs on {{date}} ({{network}}/{{channel}})</h1>
<div class="viewopts">
View:
{{^efAll}}<a href="?ef=all">{{/efAll}}All{{^efAll}}</a>{{/efAll}}
{{^efCompr}}<a href="?ef=compr">{{/efCompr}}Compressed{{^efCompr}}</a>{{/efCompr}}
</div>
<table id="events"><tbody>
{{#events}}
<tr{{#classlist}} class="{{&.}}"{{/classlist}}>
<td><a href="/cal/{{&alias}}/{{&date}}?eid={{&linkid}}#ev-{{&linkid}}" name="ev-{{&linkid}}">{{&time}}</a></td>
<td>{{#nickwrap1}}<span class="nickwrap">{{&.}}</span>{{/nickwrap1}}<span class="nick">{{nick}}</span>{{#nickwrap2}}<span class="nickwrap">{{&.}}</span>{{/nickwrap2}}</td>
<td>{{message}}</td>
</tr>
{{/events}}
</tbody></table>
<p>All times are in UTC on {{date}}.</p>
</main>
<footer>
<a href="https://git.tomsmeding.com/tirclogv">tirclogv</a> — An IRC log viewer by
<a href="https://tomsmeding.com">Tom Smeding</a>.
</footer>
</div>
</body>
</html>
|