diff options
| author | Scott Ostler <scottbot9000@gmail.com> | 2010-06-23 06:05:18 -0400 |
|---|---|---|
| committer | Scott Ostler <scottbot9000@gmail.com> | 2010-06-23 06:05:18 -0400 |
| commit | a0ff1251ce9fc1452fcd8c92737897f414f365c0 (patch) | |
| tree | f926fa9c0cc1819f198b24cf856ee5ceb11b6e16 /template | |
| parent | e1d45671c8895f3065a166de3ec40c92dd20781f (diff) | |
Added hall of fame
Diffstat (limited to 'template')
| -rw-r--r-- | template/fame.st | 39 | ||||
| -rw-r--r-- | template/fame_dump.st | 15 |
2 files changed, 54 insertions, 0 deletions
diff --git a/template/fame.st b/template/fame.st new file mode 100644 index 0000000..52bceb3 --- /dev/null +++ b/template/fame.st @@ -0,0 +1,39 @@ +<html> + <head> + <title>dump.fm hall of fame</title> + $head()$ + <link rel="stylesheet" type="text/css" href="/static/css/dump.css"> + <script> + jQuery(document).ready(initLog); + </script> + </head> + <body> + $banner()$ + <div id="content"> + <div id="messagetabs"></div> + <div id="rapper"> + </div> + + <div id="messagePanep"> + + <div id="userListp"> + <h2>Hall Of Fame </h2><br><h3></h3> + </div> + + <div id="messageList"> + $if(dumps)$ + <span class="content"> + $dumps: { d | $fame_dump(dump=d)$ }$ + </span> + $else$ + No dumps! + $endif$ + </div> + + <div id="footerc"> + $footer()$ + </div> + </div> + </div> + </body> +</html> diff --git a/template/fame_dump.st b/template/fame_dump.st new file mode 100644 index 0000000..c0fb2a2 --- /dev/null +++ b/template/fame_dump.st @@ -0,0 +1,15 @@ +<div class="logged-dump dump" id="message-$dump.message_id$" nick="$dump.nick$"> + +$dump.created_on$ -- by <a href="/$dump.nick$"><b>$dump.nick$</b> + <div id="logavatar"> +$if(dump.avatar)$ + <img height="50" width="50" src="$dump.avatar$" /> +$else$ + <img height="50" width="50" src="/static/noinfo.png"> +$endif$ + + </div></a> <img height="16px" width="16px" src="http://dump.fm/static/img/thumbs/heartfaved.gif">$dump.count$ + <div class="content">$dump.content$</div> + <hr /> +$share_buttons()$ + </div> |
