blob: 83d5ae0a3b5a22c9712f9370bc5e709e30e782e9 (
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
46
|
<html><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
$head()$
<title>$roomname$ dump.fm</title>
<script>
jQuery(document).ready(initChat);
var Nick = $json_user_nick$;
var Room = $json_room_key$;
var Timestamp = $timestamp$;
var Version = $version$;
</script>
<style type="text/css">
*{
margin:0;
padding:0;
font:60px "Gotham Black", Arial, sans-serif;
color:#FFF;
}
#full img{
width:100%;height:100%;
}
.content{
width:100%;height:100%;
}
.content img{
width:100%;height:100%;
}
</style>
</head><body>
$messages: { m |
<div id="message-$m.message_id$">
<div id="full"><span class="content">
<img src="$m.content$">
</span></div>
}$
</div>
</body></html>
|