diff options
Diffstat (limited to 'template/nigga.st')
| -rw-r--r-- | template/nigga.st | 135 |
1 files changed, 135 insertions, 0 deletions
diff --git a/template/nigga.st b/template/nigga.st new file mode 100644 index 0000000..4a8ff02 --- /dev/null +++ b/template/nigga.st @@ -0,0 +1,135 @@ +<html> + <head> + <title>$nick$'s dump.fm</title> + $head()$ + <link rel="stylesheet" type="text/css" media="screen" href="/static/css/dump.css"> + <script src="/static/js/jquery.editinplace.1.0.1.packed.js" type="text/javascript"></script> + <script src="/static/js/ajaxupload.js"></script> + <script> + jQuery(document).ready(initProfile); + </script> + <style> + #chat-wrapper { + position: absolute; + z-index: 1000000; + right: 100px; + bottom: 100px; + height: 40px; + width: 300px; + }; + </style> + </head> + <body class="profile"> + $banner()$ + <div id="content"> + <div id="messagetabs"></div> + <div id="rapper"> + </div> + + <div id="messagePane"> + <div id="userList"><br> + <h2> <br><br> + $if(avatar)$ + <img id="avatarPic" src="$avatar$"/> + $else$<br><br> + <img id="avatarPic" src="/static/img/noinfo.png"> + $endif$ + + $nick$ </h2><br> + $if(score_ent)$ + <h8> + fav score: $score$ + <h9>$score_ent$</h9> + $endif$</h8> + $if(isadmin)$<br><br> + <div id="adminmute"> + <a href="#" onclick="Admin.mute('$nick$'); return false">Mute $nick$!</a><br> + </div> + $endif$ + + + + + + $if(is_home)$ + <div id="avatar-editing" style="display: none"> + <input id="uploadp" value="Upload Icon" type="submit"> + <img id="spinner" src="/static/img/spinner.gif" style="display: none" /> + </div> + $endif$ + + <br> <h3>contact info</h3> + $if(contact)$ + <br><br><div id="contact" class="linkify">$contact$</div> + $else$ + <br><br><div><img id="contact" src="/static/img/noinfo.png"></div> + $endif$ + <br> + + <br><br><h3>bio</h3> + $if(bio)$ + <br><br> <div id="bio" class="linkify">$bio$</div> + $else$ + <br><br><div><img id="bio" src="/static/img/noinfo.png"></div> + $endif$ + + + + + $if(is_home)$ + <br> + <div id="edit-toggle"><a href="#">edit profile</a></div> + $endif$ + + <br> + + <a href="http://dump.fm/u/$nick$/favorites"><h7>$nick$'s <br>Favorite Pix</h7></a> + + <div id="date"> + <div type="text" id="datepicker"></div></div> + </div> + + <div id="favbox" style="display: hidden"></div> + <div id="messageList"> + + $if(dumps)$ <span class="content"> + $dumps:{ d | $profile_dump(dump=d)$ }$ + + + + </span> + + + + $else$ + no dumps + $endif$ + </div> + + + <div id="msgInputDiv"> + <div id="msginputrapper"> <input id="msgInput" class="msgInput" type="input" /> + <a href="#" onClick="alert('Coming soon!');return false"> <input id="msgSubmit"value="private message"/></a> + $if(prev)$ + <a href="/$nick$/$prev$"><input id="upload" value="Prev"></a> + $else$ +<input id="upload"> + $endif$ + + $if(next)$ + <a href="/$nick$/$next$"> <input id="webcam-button-upload" value="Next"></a> + $else$ + <input id="webcam-button-upload" value="nomodumps"> + $endif$ + + + <a href="http://dump.fm/u/$nick$/favorites"> <button id="palette-button"><img src="/static/img/palette.gif"></button></a> + + </div> + <div id="footerc"> + $footer()$ + </div> + </div> + </div></div></div> + </body> +</html> |
