diff options
Diffstat (limited to 'template/directory.st')
| -rw-r--r-- | template/directory.st | 101 |
1 files changed, 47 insertions, 54 deletions
diff --git a/template/directory.st b/template/directory.st index 37b1a2e..954c717 100644 --- a/template/directory.st +++ b/template/directory.st @@ -1,72 +1,65 @@ <html> <head> - + <title>dump.fm</title> $head()$ - <link rel="stylesheet" type="text/css" href="/static/directory.css"> + <link rel="stylesheet" type="text/css" href="/static/directory.css"> <script> jQuery(document).ready(initDirectory); </script> - + </head> <body> $banner()$ - <div id="chatrap"> - - - + <div id="chatrap"> <div id="log"> <div id="loghead"></div> <br> - - <div id="posts"> - - <br> - <center> - <h2> ✭ ✭ DUMP STARS ✭ ✭</h2> - <div id="lolbanner"> - <img src="/static/welcomebanner.gif"> + + <div id="posts"> + <br> + <center> + <h2>✭ ✭ DUMP STARS ✭ ✭</h2> + <div id="lolbanner"> + <img src="/static/welcomebanner.gif"> </div> - - </center> - - $if(users)$ - $users:{ u | - <div class="logged-dump"> - <a href="/u/$u.nick$"> - <b> $u.nick$</b> - $if(u.avatar)$ <div style="border-image:url($u.avatar$)"> - <div id="logavatar"> <img height="50" width="50" src="$u.avatar$"></img></div> + </center> + $if(users)$ + $users:{ u | + <div class="logged-dump"> + <a href="/u/$u.nick$"> + <b>$u.nick$</b> + $if(u.avatar)$ + <div style="border-image:url($u.avatar$)"> + <div id="logavatar"> + <img height="50" width="50" src="$u.avatar$"></img> + </div> + $endif$ + </a> + <div id="infotxt"><b>last post</b></div> + <span class="linkify">$u.content$</span> + <hr /> + </div> + <a href="http://www.facebook.com/share.php?u=$u.content$&t=via dump.fm" target="_blank"><img src="/static/fbbutton.png"></a> + <a href="http://twitter.com/home?status=via dump.fm $u.content$" target="_blank"><img src="/static/twittericon.png"></a> + <a href="http://delicious.com/save?url=$u.content$¬es=via dump.fm&title=$u.content$" target="_blank"><img src="/static/delishicon.png"></a> + </div> + }$ + $else$ + <span>No more users!</span> + $endif$ + <div id="pnav"> + $if(prev)$ + <div id="pnavn"><a href="/directory$prev$">BACK</a></div> $endif$ - </a> - <div id="infotxt"><b><div style="display:none;">Count: $u.cnt$ !!</div> - last post </b></div> - <span class="linkify">$u.content$</span> - <hr /></div> - - - <a href="http://www.facebook.com/share.php?u=$u.content$&t=via dump.fm" target="_blank"><img src="/static/fbbutton.png"></a> -<a href="http://twitter.com/home?status=via dump.fm $u.content$" target="_blank"><img src="/static/twittericon.png"></a> -<a href="http://delicious.com/save?url=$u.content$¬es=via dump.fm&title=$u.content$" target="_blank"><img src="/static/delishicon.png"></a> -</div> - }$ - $else$ - <span>No more users!</span> - $endif$ - <div id="pnav"> - - $if(prev)$ - <div id="pnavn"><a href="/directory$prev$">BACK</a></div> - $endif$ - $if(users)$ - <div id="pnavo"> <a href="/directory$next$">MOAR!</a></div> - $endif$ - - </div> - <div id="footer"> - $footer()$ - </div> - </div> + $if(users)$ + <div id="pnavo"> <a href="/directory$next$">MOAR!</a></div> + $endif$ + </div> + <div id="footer"> + $footer()$ + </div> + </div> </body> </html> |
