summaryrefslogtreecommitdiff
path: root/template/log.st
diff options
context:
space:
mode:
authordumpfmprod <dumpfmprod@ubuntu.(none)>2010-01-15 13:50:49 -0500
committerdumpfmprod <dumpfmprod@ubuntu.(none)>2010-01-15 13:50:49 -0500
commitd542c7f4476b14d6a0fa2c1089ed6ff1fe8da5dc (patch)
tree6193d5f004d52aa24ad2040f8bf7a03ac6dc526d /template/log.st
parentad22a53236804ee564f85b11cba4890e0ad9ae88 (diff)
Commit
Diffstat (limited to 'template/log.st')
-rwxr-xr-x[-rw-r--r--]template/log.st45
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$
- &nbsp;&nbsp;&nbsp;
$if(next)$
- <a href="/$roomkey$/log/$next$">MORE DUMPS</a>
+ <a href="/$roomkey$/log/$next$"><- OLD DUMPS</a>
+ $endif$
+ &nbsp;&nbsp;
+ $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$
- &nbsp;&nbsp;&nbsp;
$if(next)$
- <a href="/$roomkey$/log/$next$">MORE DUMPS</a>
+ <a href="/$roomkey$/log/$next$"><- OLD DUMPS</a>
+ $endif$
+ &nbsp;&nbsp;
+ $if(prev)$
+ <a href="/$roomkey$/log/$prev$">NEW DUMPS -></a>
$endif$
</div>
+
+
+ <div id="footer">
+ $footer()$
+ </div></div>
+
</body>
</html>