summaryrefslogtreecommitdiff
path: root/template
diff options
context:
space:
mode:
Diffstat (limited to 'template')
-rwxr-xr-xtemplate/banner.st7
-rwxr-xr-xtemplate/chat.st9
-rw-r--r--template/directory.st63
-rwxr-xr-xtemplate/head.st2
-rw-r--r--template/help.st2
-rw-r--r--template/preload.st1
-rw-r--r--template/privacy.st4
-rwxr-xr-xtemplate/profile.st4
-rw-r--r--template/terms.st4
9 files changed, 53 insertions, 43 deletions
diff --git a/template/banner.st b/template/banner.st
index d029a2d..383c36e 100755
--- a/template/banner.st
+++ b/template/banner.st
@@ -1,3 +1,4 @@
+
<div id="rapper7">
<div id="header7">
<div id="logoicons">
@@ -16,6 +17,7 @@
<li><a href="/log"><img src="/static/text.gif" > Log</a></li>
<li><a href="/u/$user_nick$"><img src="/static/home4.gif"/> Profile</a></li>
<li><a href="/browser"><img src="/static/image_draw.gif" /> Image Search</a></li>
+ <li><a href="/directory"><img src="/static/directory.gif"/>Directory</a></li>
</ul>
$else$&nbsp; &nbsp;
<div id="register" style="display:none;"> <a href="/register"><img src="/static/answer_good.gif" />Register</a></div>
@@ -42,7 +44,10 @@
</div>
<div align="center"><br /></div>
+
</div>
</div>
-
+<div id="preload">
+ <img src="/static/img/cursors/osx.hand.gif" class="no-cursor invisible" id="cursor-big">
+</div>
diff --git a/template/chat.st b/template/chat.st
index 0d453d8..9dc7d3a 100755
--- a/template/chat.st
+++ b/template/chat.st
@@ -4,6 +4,7 @@
$head()$
<link rel="stylesheet" type="text/css" href="/static/pichat.css">
<script type="text/javascript" src="/static/webcam/webcam.js"></script>
+ <script type="text/javascript" src="/static/js/tooltip.js"></script>
<script>
jQuery(document).ready(initChat);
var Nick = $json_user_nick$;
@@ -25,6 +26,13 @@
setupUpload('upload', Room);
});
}
+ var newwindow;
+function pop(url)
+{
+ newwindow=window.open(url,'name','height=50,width=400,left=20,top=20,location=0,status=0,scrollbar=0,resizable=0');
+ if (window.focus) {newwindow.focus()}
+}
+
</script>
</head>
<body onload="MM_preloadImages('/static/thumbs_up_sm.gif')">
@@ -71,6 +79,7 @@
<input id="upload" value="Upload" type="submit">
<input id="webcam-button-upload" value="Webcam" type="submit">
<input id="webcam-button-snap" value="Send Pic" type="submit" class="invisible blink">
+ <div id="trophy"><a href="javascript:pop('http://www.likeneveralways.com/trash/count/index.php');"class="tooltip" title="Contest Counter"><img src="/static/trophyicon.gif"></a></div>
</div>
$endif$
</div>
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>
diff --git a/template/head.st b/template/head.st
index e83e687..e78ee8f 100755
--- a/template/head.st
+++ b/template/head.st
@@ -1,7 +1,7 @@
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript" src="/static/jquery-1.3.2.min.js"></script>
-<!-- <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script> -->
+<!-- <script type="text/javascript" src="/static/jquery.min.js"></script> -->
<!--<script type="text/javascript" src="/static/js/underscore-min.js"></script> -->
<script type="text/javascript" src="/static/js/sha1.js"></script>
<script type="text/javascript" src="/static/js/pichat.js"></script>
diff --git a/template/help.st b/template/help.st
index 6a4f150..f8510b2 100644
--- a/template/help.st
+++ b/template/help.st
@@ -25,7 +25,7 @@ jQuery(function()
background-position:1 10;
background-attachment:fixed;" onload="
javascript:CreateDropdownWindow('dump.fm', '360px', true, 'news', 30, 115);
- javascript:CreateDropdownWindow('frequently asked questions', '520px', true, 'archive', 450, 60);
+ javascript:CreateDropdownWindow('frequently asked questions', '520px', true, 'archive', 440, 60);
diff --git a/template/preload.st b/template/preload.st
index ca8dbaa..1f51935 100644
--- a/template/preload.st
+++ b/template/preload.st
@@ -1,3 +1,4 @@
<div id="preload">
<img src="/static/img/cursors/osx.hand.gif" class="no-cursor invisible" id="cursor-big" />
+ <img src="/static/upload.png" />
</div> \ No newline at end of file
diff --git a/template/privacy.st b/template/privacy.st
index 22d4721..501664d 100644
--- a/template/privacy.st
+++ b/template/privacy.st
@@ -24,8 +24,8 @@ jQuery(function()
background-repeat:repeat-x;
background-position:1 10;
background-attachment:fixed;" onload="
- javascript:CreateDropdownWindow('dump.fm', '360px', true, 'news', 30, 115);
- javascript:CreateDropdownWindow('privacy agreement', '560px', true, 'archive', 450, 60);
+ javascript:CreateDropdownWindow('dump.fm', '360px', true, 'news', 20, 115);
+ javascript:CreateDropdownWindow('privacy agreement', '560px', true, 'archive', 420, 60);
diff --git a/template/profile.st b/template/profile.st
index 91b1b91..fad4b18 100755
--- a/template/profile.st
+++ b/template/profile.st
@@ -9,7 +9,7 @@
<script src="/static/js/ajaxupload.js"></script>
<script type="text/javascript" src="/static/jquery.editinplace.1.0.1.packed.js"></script>
- <link type="text/css" href="http://jqueryui.com/latest/themes/base/ui.all.css" rel="stylesheet" />
+
<script>
jQuery(document).ready(initProfile);
@@ -85,7 +85,7 @@
<h3>&nbsp;</h3>
<h3>&nbsp;</h3>
<div id="newuser">
- <h2>&#x263A;&#x270C; Welcome to dump.fm &#x270C;&#x263A;</h2>
+ <h2>Welcome to dump.fm</h2>
<br><br>
<h1>Step &#x2776;</h1>
diff --git a/template/terms.st b/template/terms.st
index 6a409b5..b041848 100644
--- a/template/terms.st
+++ b/template/terms.st
@@ -24,8 +24,8 @@ jQuery(function()
background-repeat:repeat-x;
background-position:1 10;
background-attachment:fixed;" onload="
- javascript:CreateDropdownWindow('dump.fm', '360px', true, 'news', 30, 115);
- javascript:CreateDropdownWindow('terms of service', '560px', true, 'archive', 450, 60);
+ javascript:CreateDropdownWindow('dump.fm', '360px', true, 'news', 20, 115);
+ javascript:CreateDropdownWindow('terms of service', '560px', true, 'archive', 420, 60);