blob: e75ddd5fc5a49aa44a7a74776dd731a8bfab9523 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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>
|