summaryrefslogtreecommitdiff
path: root/template/directory.st
diff options
context:
space:
mode:
authordumpfmprod <dumpfmprod@ubuntu.(none)>2010-03-12 19:31:37 -0500
committerdumpfmprod <dumpfmprod@ubuntu.(none)>2010-03-12 19:31:37 -0500
commit0e066e6b22ec91bb6b6d233d8f5e94400bfb062d (patch)
treeb86ee0a7990420a93f23bd31d1a2aeaa411af882 /template/directory.st
parent8aa89f36f5aa59a853daaf24571bb2cddc7e9760 (diff)
timb committing ryder's changes
Diffstat (limited to 'template/directory.st')
-rw-r--r--template/directory.st63
1 files changed, 29 insertions, 34 deletions
diff --git a/template/directory.st b/template/directory.st
index 7f78265..bf6979c 100644
--- a/template/directory.st
+++ b/template/directory.st
@@ -1,26 +1,8 @@
<html>
<head>
- <title>dump.fm Directory</title>
+ <title>dump.fm</title>
$head()$
- <style>
- body {
- background-attachment: fixed;
- background-color: #FFE;
- background-image: url(http://localhost:8080/static/chanbg.png);
- background-position: 1px 10px;
- background-repeat: repeat-x;
- font-family: Arial, Helvetica, sans-serif;
- }
- #main {
- position: absolute;
- top: 57px;
- padding: 2em;
- }
- .linkify img {
- max-height: 300px;
- max-width: 200px;
- }
- </style>
+ <link rel="stylesheet" type="text/css" href="/static/directory.css">
<script>
jQuery(document).ready(initDirectory);
</script>
@@ -28,37 +10,50 @@
</head>
<body>
$banner()$
- <div id="chatrap">
- <div id="headerbar"></div>
- <div id="main">
- <h3>DUMP STARS</h3>
- <br />
+ <div id="chatrap">
+
+ <div id="log">
+ <div id="loghead"></div>
+ <br>
+
+ <div id="posts">
+
+ <br>
+ <center>
+ <h2> &#x272D; &#x272D; DUMP STARS &#x272D; &#x272D;</h2>
+ <div id="lolbanner">
+ <img src="/static/welcomebanner.gif">
+ </div>
+
+ </center>
+
$if(users)$
$users:{ u |
- <div>
+ <div class="logged-dump">
<a href="/u/$u.nick$">
- <h2>$u.nick$</h2>
+ <b> $u.nick$</b>
$if(u.avatar)$
- <img height="50" width="50" src="$u.avatar$"></img>
+ <div id="logavatar"> <img height="50" width="50" src="$u.avatar$"></img></div>
$endif$
</a>
- <div>Count: $u.cnt$</div>
- <div>
- <span>Last post:</span>
+ <div id="infotxt"><b><div style="display:none;">Count: $u.cnt$ !!</div>
+ last post </b></div>
<span class="linkify">$u.content$</span>
+ <hr />
</div>
- <hr />
+
}$
$else$
<span>No more users!</span>
$endif$
+ <div id="pnav">
$if(prev)$
- <a href="/directory$prev$">BACK</a>
+ <div id="pnavn"><a href="/directory$prev$">BACK</a></div>
$endif$
$if(users)$
- <a href="/directory$next$">MORE</a>
+ <div id="pnavo"> <a href="/directory$next$">MOAR!</a></div>
$endif$
</div>