summaryrefslogtreecommitdiff
path: root/template/log.st
diff options
context:
space:
mode:
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>