-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (38 loc) · 773 Bytes
/
index.html
File metadata and controls
39 lines (38 loc) · 773 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Loading...</title>
<style>
#header {
font-size: 20px;
margin-top: 10px;
margin-bottom: 10px;
position: absolute;
left: 10px;
right: 10px;
}
#main {
position: absolute;
top: 50px;
bottom: 10px;
left: 10px;
right: 10px;
overflow: scroll;
}
body {
font-family: monospace;
}
pre {
padding: 0;
margin: 0;
}
</style>
</head>
<body>
<div id="header">
Reading <span id="channel">(loading...)</span> over a p2p network using <a href="https://github.com/mafintosh/hyperirc">hyperirc</a>. Connected to <span id="count">0</span> peer(s).
</div>
<div id="main"></div>
<script src="bundle.js"></script>
</body>
</html>