summaryrefslogtreecommitdiff
path: root/template/log.st
blob: de118ec8cb0c4d35ab6b740a4335dccf76dbe5f6 (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
<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/img/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="http://$roomkey$dump.fm/log/$next$">next &#9758;</a>
            </div>
            $endif$
            &nbsp;
            $if(prev)$
            <div id="pnavo">
              <a href="http://$roomkey$dump.fm/log/$prev$">&#9756; prev</a>
            </div>
            $endif$
            <br><br>
          </div>
        </div>
        <div id="footer">
          $footer()$
        </div>
      </div>
  </body>
</html>