blob: 0a12550b83cb1ee9894a75230e6ef80061306b3b (
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
44
45
46
47
48
49
50
51
52
53
54
|
<html>
<head>
<title>$roomname$ Log</title>
$head()$
<link rel="stylesheet" type="text/css" href="/static/profile.css">
<style>
</style>
<script>
jQuery(document).ready(initLog);
</script>
</head>
<body>
$banner()$
<div id="chatrap">
<div id="log">
<div id="loghead">
</div>
<br>
<div id="posts">
$if(dumps)$
$dumps: { d | $logged_dump(dump=d)$ }$
$else$
No dumps!
$endif$
<div id="pnav">
$if(next)$
<div id="pnavn"><a href="/$roomkey$/log/$next$">next ☞</a></div>
$endif$
$if(prev)$
<div id="pnavo"> <a href="/$roomkey$/log/$prev$">☜ prev</a> </div>
$endif$
<br><br>
</div>
</div>
<div id="footer">
$footer()$
</div></div>
</body>
</html>
|