blob: 8811d7ffa5d036355a09d93ad21d17fe5803b671 (
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
|
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>tirclogv</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/style.css">
<link rel="icon" type="image/png" href="/favicon.png">
</head>
<body>
<div id="gridwrapper" data-page="index">
<main>
<h1>IRC logs</h1>
{{#networks}}
<h2>{{name}}</h2>
{{#channels}}
<a class="chanlink" href="/log/{{alias}}">{{name}}</a><br>
{{/channels}}
{{/networks}}
</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>
|