diff options
| -rw-r--r-- | template/head_edge.st | 33 | ||||
| -rw-r--r-- | template/rooms/atrium.st | 141 |
2 files changed, 174 insertions, 0 deletions
diff --git a/template/head_edge.st b/template/head_edge.st new file mode 100644 index 0000000..36079a5 --- /dev/null +++ b/template/head_edge.st @@ -0,0 +1,33 @@ +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> +<meta name="keywords" content="dump.fm, image chat, realtime, internet 3.0, dump, dump fm, image dump, pictures, image links, image board, scott ostler, ryder ripps"> +<meta name="description" content="dump.fm - Talk with pictures!" /> +<script type="text/javascript" src="/static/js/jquery-1.4.2.min.js"></script> +<link rel="shortcut icon" href="http://dump.fm/static/favicon.ico"> +<link rel="image_src" href="http://dump.fm/static/img/thumbs/heartover.gif" > +<!-- <script type="text/javascript" src="$domain$/static/js/jquery-ui-1.8.effects.min.js"></script> --> +<script type="text/javascript" src="$domain$/static/js/pichat2.js"></script> +<link rel="stylesheet" type="text/css" href="$domain$/static/css/dump.css"> +<script> + Domain = "$domain$"; + Nick = $if(user_nick)$"$user_nick$"$else$null$endif$; +</script> +$if(!user_nick)$ +<script type="text/javascript" src="$domain$/static/js/popup.js"></script> +$endif$ +$if(isadmin)$ +<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/ui-lightness/jquery-ui.css" + type="text/css" media="all" /> +<link rel="stylesheet" href="$domain$/static/css/admin.css" + type="text/css" media="all" /> +<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.0/jquery-ui.min.js" + type="text/javascript"></script> +<script src="$domain$/static/js/admin.js" type="text/javascript"></script> +$endif$ + +<link rel="shortcut icon" href="$domain$/static/favicon.ico"> + +<!--[if IE]> +<script> +window.location = "http://dump.fm/error/ie"; +</script> +<![endif]--> diff --git a/template/rooms/atrium.st b/template/rooms/atrium.st new file mode 100644 index 0000000..bde33eb --- /dev/null +++ b/template/rooms/atrium.st @@ -0,0 +1,141 @@ +<!--/* + + _____ ___ ___ ___ ___ ___ + / /::\ /__/\ /__/\ / /\ / /\ /__/\ + / /:/\:\ \ \:\ | |::\ / /::\ / /:/_ | |::\ + / /:/ \:\ \ \:\ | |:|:\ / /:/\:\ / /:/ /\ | |:|:\ + /__/:/ \__\:| ___ \ \:\ __|__|:|\:\ / /:/~/:/ / /:/ /:/ __|__|:|\:\ + \ \:\ / /:/ /__/\ \__\:\ /__/::::| \:\ /__/:/ /:/ /__/:/ /:/ /__/::::| \:\ + \ \:\ /:/ \ \:\ / /:/ \ \:\~~\__\/ \ \:\/:/ \ \:\/:/ \ \:\~~\__\/ + \ \:\/:/ \ \:\ /:/ \ \:\ \ \::/ \ \::/ \ \:\ + \ \::/ \ \:\/:/ \ \:\ \ \:\ \ \:\ \ \:\ + \__\/ \ \::/ \ \:\ \ \:\ \ \:\ \ \:\ + \__\/ \__\/ \__\/ \__\/ \__\/ \___\/ + + (c)2012 dump.fm --> + +<html> + <head> + $head_edge()$ + <title>$roomname$ dump.fm</title> + + <script type="text/javascript" src="$domain$/static/js/invalid_domains.js"></script> + <script type="text/javascript" src="$domain$/static/webcam/webcam.js"></script> + <script type="text/javascript" src="$domain$/static/js/ajaxupload.js"></script> + $if(user_nick)$ + <script type="text/javascript" src="$domain$/json/$user_nick$/favorites"></script> + $endif$ + <script> + jQuery(document).ready(initChat); + var Nick = $json_user_nick$; + var Room = $json_room_key$; + var Timestamp = $timestamp$; + $if(isadmin)$ + var IsAdmin = true; + $else$ + var IsAdmin = false; + $endif$ + if (Nick) { + jQuery(document).ready(function() { setupUpload('upload', Room); }); + } + function showAlert() { alert('MUST LOGIN'); } + var newwindow; + function pop(url) { + newwindow=window.open(url,'name','height=50,width=400,left=20,top=20,location=0,status=0,scrollbar=0,resizable=0'); + if (window.focus) {newwindow.focus()} + } + jQuery(Away.startTitleUpdater); + jQuery(initChatMsgs); + $if(user_nick)$ // + $else$ + function showAlert() { + alert('Join dump.fm @ http://dump.fm/register'); + } + + $endif$ + </script> + <style> + #chat-wrapper { + position: absolute; + z-index: 1000000; + right: 100px; + bottom: 100px; + height: 40px; + width: 300px; + }; + </style> + </head> + <body> + $if(dis)$ + $banner_dis()$ + $else$ + $banner()$ + $if(!user_nick)$ + <div id="dis_welcome"> + <center> + <img src="$domain$/static/img/dumppixellarge3.png"> + <div id="midtxt">dump.fm lets you <i>talk with pictures!</i> Paste an image url, upload, or snap a pic right from your webcam. Talk to friends, fav images, and keep track of the pix you love. + <br><br> + <span id="signintxt"> + If you already have an account <strong><a href="http://dump.fm/login" class="signin">sign in</a></strong> If not <strong><a href="http://dump.fm/register">register</a></strong>! + </span> + </center> + </div> + </div> + + <link href="$domain$/static/css/pages.css" rel="stylesheet" type="text/css" media="screen" /> + <link href="$domain$/static/css/header.css" rel="stylesheet" type="text/css" media="screen" /> + <script type="text/javascript" src="$domain$/static/js/win.js"></script> + <script type="text/javascript"> + var topZ = 7; + CreateDropdownWindow('', '500px', true, 'dis_welcome', 300, 70); + </script> + <style> + .divDragTitle { + left:50%!important; + margin-left: -250px!important; + } + .divDragContent { + z-index:666; + left:50%!important; + margin-left: -250px!important; + + } + </style> + $endif$ + $endif$ + + + <div id="chatrap"> + <div id="dcontent"> + <div id="messagetabs"></div> + $messagepane()$ + <script> + var Recips = $recips$; + </script> + </div> + </div> + <div id="palette"> + <div id="palette-thumbs"></div> + </div> + <div id="chatbuttons"> + <div id="textbutton"> + <span>show text?</span> + <input type="checkbox"> + </div> + <div id="imgbutton"> + <span>show imgs?</span> + <input type="checkbox"> + </div> + <div id="clearbutton"> + <span>clear screen</span> + <input type="checkbox"> + </div> + </div> + <div id="footerc"> + $footer()$ + </div> + </div> + $preload()$ + </body> +</html> |
