blob: 5cf80782b93d7caa675e3a7ac2bd0a5d3946063d (
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
|
<!doctype html>
<html lang="en">
<head>
{{> headmeta}}
<title>{{channel}} {{date}} ({{network}}) - tirclogv</title>
<script src="/log.js"></script>
</head>
<body>
<div id="gridwrapper" data-page="withheader">
{{> header}}
<main>
<h1>Logs on {{date}} ({{network}}/{{channel}})</h1>
<div class="pagepicker">
{{#picker}}
{{#prevpage}}<a href="/cal/{{&alias}}/{{.}}">{{/prevpage}}←Prev{{#prevpage}}</a>{{/prevpage}}
{{#nextpage}}<a href="/cal/{{&alias}}/{{.}}">{{/nextpage}}Next→{{#nextpage}}</a>{{/nextpage}}
{{/picker}}
</div>
<div class="viewopts" style="margin-left: 15px">
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}}
</div>
</body>
</html>
|