blob: fd9445dd8e862dbd92d9340a29e16dcc926be0f8 (
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
44
45
|
<html>
<head>
<title>dump.fm</title>
$head()$
<link rel="stylesheet" type="text/css" href="http://dump.fm/static/css/dump.css">
<script>
jQuery(document).ready(initDirectory);
</script>
</head>
<body>
$banner()$
<div id="content">
<div id="messagetabs"></div>
<div id="rapper">
</div>
<div id="messagePanep">
<br> <a href="/u/$message.nick$">
$if(message.avatar)$
<div style="border-image:url($message.avatar$)">
<div id="avatarPic">
<img height="50" width="50" src="$message.avatar$"></img>
</div>
<b>$message.nick$</b>
<hr>
$endif$
</a>
<div id="messageList">
<div class="content" id="message-$message.message_id$">
<span class="linkify">$message.content$</span>
<hr />
</div>
</div>
<div id="footerc">
$footer()$
</div>
</div>
</body>
</html>
|