summaryrefslogtreecommitdiff
path: root/template/log.st
blob: 8af01542ed752ab1b0652f2ed270f2be54d86e5b (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
<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(dumps)$
  $dumps: { d | $log_dump(dump=d)$ }$
  $if(json_tags)$
<script>
  $json_tags: { j | $j$;
}$
</script>
  $endif$
$else$
  No dumps!
$endif$
        <div id="pnav">
$if(next)$
          <div id="pnavn"><a href="/$roomkey$/log/$next$">next &#9758;</a></div> 
$endif$
            &nbsp;
$if(prev)$
          <div id="pnavo">  <a href="/$roomkey$/log/$prev$">&#9756; prev</a>          </div>
$endif$
          <br><br>
        </div>
      </div>

      <div id="footer">
$footer()$
      </div>
    </div>
  </body>
</html>