blob: 58e4e99f49d33ab0752af02a0a1d49cfc47be85c (
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
|
<html>
<head>
<title>dump.fm log</title>
$head()$
<link rel="stylesheet" type="text/css" href="/static/css/log.css">
<script>
jQuery(document).ready(initLog);
</script>
</head>
<body>
$banner()$
<div id="chatrap">
<div id="log">
<div id="loghead"></div>
<br>
<div id="posts">
<div id="lolbanner">
<img src="/static/welcomebanner.gif">
</div>
$if(dumpstest)$
HELLO
$dumpstest: {du | $du$ }$
$endif$
$if(dumps)$
$dumps: { d | $log_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>
|