diff options
Diffstat (limited to 'template/browser.st')
| -rwxr-xr-x | template/browser.st | 73 |
1 files changed, 68 insertions, 5 deletions
diff --git a/template/browser.st b/template/browser.st index 1531ff5..a92eef3 100755 --- a/template/browser.st +++ b/template/browser.st @@ -1,9 +1,72 @@ <html> - <body> - $if(user_nick)$ - Hello, $user_nick$ - $else$ - Hello, unnamed + <head> + <title>dump.fm | Browser Tool Beta</title> + $head()$ + <link rel="stylesheet" type="text/css" href="/static/browser.css"> + <script type="text/javascript" src="/static/gritter/js/jquery.gritter.js"></script> + <link rel="stylesheet" type="text/css" href="/static/gritter/css/jquery.gritter.css" /> + + + + <script> + jQuery(document).ready(initChat); + var Nick = $json_user_nick$; + var Room = $json_room_key$; + var Timestamp = $timestamp$; + var PostedMessages = []; + var growlize = true; + </script> + + $if(isadminroom)$ + <style> + iframe { + z-index: 50000; + position: fixed; + top: 300px; + right: 25px; + } + </style> + <script src="http://widgets.getclicky.com/tally/?site_id=170656&sitekey=736f7dd41a0612d8d50797c65768e71a&width=175&height=250&title=Visitors" type="text/javascript"></script> $endif$ + </head> + <body> + $banner()$ + <div id="chatrap"> + <div id="logc"> + <div id="content"> + + <div id="rapper"> + <div id="loghead"></div> + </div> + + </div> + <div id="messagePane"> + <div id="messageList"> + <iframe src="/static/search/search.html" style="width:100%;height:100%;padding:0px;background-color: #fff; position:absolute; top:0px; left:0px; border:none; allowtransparency="true" scrolling="no" ></iframe> + + + </div> + $if(user_nick)$ + <div id="msgInputDiv"> + <input id="msgInput" class="msgInput" type="input" /> + <input id="msgSubmit" type="submit" value="Send Image URL" + /> + </div> + $endif$ + </div> + </div> + </div> + </div> +</div> +</div> + + </div> + <div id="footerc"> + <p> + $footer()$</p> + <p> + </p> + </div> </body> + </html> |
