diff options
| author | timb <timb@mb.local> | 2010-03-17 01:53:52 -0700 |
|---|---|---|
| committer | timb <timb@mb.local> | 2010-03-17 01:53:52 -0700 |
| commit | 6a44bb8e971dde5aa8724b50943c052ae4cbf194 (patch) | |
| tree | 75bc8568aec9165d9fd2e8741f1c3572c131bfb0 /template/single_message.st | |
| parent | b54277e9ce12b99a54c7509408fc8373c3fe92c7 (diff) | |
added single message urls so ppl can share dumps on fb, twitter, etc
Diffstat (limited to 'template/single_message.st')
| -rw-r--r-- | template/single_message.st | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/template/single_message.st b/template/single_message.st new file mode 100644 index 0000000..e75ddd5 --- /dev/null +++ b/template/single_message.st @@ -0,0 +1,43 @@ +<html> + <head> + + <title>dump.fm</title> + $head()$ + <link rel="stylesheet" type="text/css" href="/static/directory.css"> + <script> + jQuery(document).ready(initDirectory); + </script> + + + </head> + <body> + $banner()$ + <div id="chatrap"> + <div id="log"> + <div id="loghead"></div> + <br> + <div id="posts"> + <br> + <div class="logged-dump"> + <a href="/u/$message.nick$"> + <b>$message.nick$</b> + $if(message.avatar)$ + <div style="border-image:url($message.avatar$)"> + <div id="logavatar"> + <img height="50" width="50" src="$message.avatar$"></img> + </div> + $endif$ + </a> + <span class="linkify">$message.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> + <!--<div id="footer"> + $footer()$ + </div>--> + </div> + </body> +</html> |
