diff options
| author | Scott Ostler <scottbot9000@gmail.com> | 2010-08-23 16:02:56 -0400 |
|---|---|---|
| committer | Scott Ostler <scottbot9000@gmail.com> | 2010-08-23 16:02:56 -0400 |
| commit | 3e9161e16068b0347e26438de6fb0cb8692d8173 (patch) | |
| tree | 69ba37589a40d215c61e9864ccdb9811e588e009 /template/fullscreen.ryder.st | |
| parent | 82c08bc3cf6191146f10cc3cba605f5226281243 (diff) | |
| parent | 5bc995cc19ea506b7b4888f849b4c1895547cf02 (diff) | |
Merge branch 'master' of ssh://dump.fm/pichat/repo
Diffstat (limited to 'template/fullscreen.ryder.st')
| -rw-r--r-- | template/fullscreen.ryder.st | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/template/fullscreen.ryder.st b/template/fullscreen.ryder.st new file mode 100644 index 0000000..83d5ae0 --- /dev/null +++ b/template/fullscreen.ryder.st @@ -0,0 +1,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>
\ No newline at end of file |
