diff options
| author | Scott Ostler <sostler@deathmachine.local> | 2010-01-15 13:52:39 -0500 |
|---|---|---|
| committer | Scott Ostler <sostler@deathmachine.local> | 2010-01-15 13:52:39 -0500 |
| commit | 233260244803dad4c892f9ab52fee3d5e48b3b39 (patch) | |
| tree | 72392a6326009f90c1786f2bb482471ba81a1f79 /template/log.st | |
| parent | 692e2d725f278708324fd2534007448ed03a150d (diff) | |
| parent | d542c7f4476b14d6a0fa2c1089ed6ff1fe8da5dc (diff) | |
Merge branch 'master' of ssh://dump.fm/home/dumpfmprod/prod/
Diffstat (limited to 'template/log.st')
| -rwxr-xr-x[-rw-r--r--] | template/log.st | 45 |
1 files changed, 29 insertions, 16 deletions
diff --git a/template/log.st b/template/log.st index 976d0e6..60eb3d5 100644..100755 --- a/template/log.st +++ b/template/log.st @@ -2,10 +2,9 @@ <head> <title>$roomname$ Log</title> $head()$ + <link rel="stylesheet" type="text/css" href="/static/profile.css"> <style> - body { - margin: 100px 50px; - } + </style> <script> jQuery(document).ready(initLog); @@ -13,33 +12,47 @@ </head> <body> $banner()$ - <h2>Log</h2> + <div id="chatrap"> + + + <div id="log"> + <div id="loghead"> + + </div> + <br> + <div id="pnav"> - <div style="text-align: right;"> - $if(prev)$ - <a href="/$roomkey$/log/$prev$">PREV DUMPS</a> - $endif$ - $if(next)$ - <a href="/$roomkey$/log/$next$">MORE DUMPS</a> + <a href="/$roomkey$/log/$next$"><- OLD DUMPS</a> + $endif$ + + $if(prev)$ + <a href="/$roomkey$/log/$prev$">NEW DUMPS -></a> $endif$ </div> + <div id="posts"> $if(dumps)$ $dumps: { d | $logged_dump(dump=d)$ }$ $else$ No dumps! $endif$ + <div id="pnav"> - <div style="text-align: right;"> - $if(prev)$ - <a href="/$roomkey$/log/$prev$">PREV DUMPS</a> - $endif$ - $if(next)$ - <a href="/$roomkey$/log/$next$">MORE DUMPS</a> + <a href="/$roomkey$/log/$next$"><- OLD DUMPS</a> + $endif$ + + $if(prev)$ + <a href="/$roomkey$/log/$prev$">NEW DUMPS -></a> $endif$ </div> + + + <div id="footer"> + $footer()$ + </div></div> + </body> </html> |
