diff options
Diffstat (limited to 'template/profile.st')
| -rwxr-xr-x | template/profile.st | 79 |
1 files changed, 45 insertions, 34 deletions
diff --git a/template/profile.st b/template/profile.st index e407ce1..b00297a 100755 --- a/template/profile.st +++ b/template/profile.st @@ -7,15 +7,24 @@ <script src="/static/jquery.editinplace.1.0.1.packed.js" type="text/javascript" > </script> + <link rel="stylesheet" type="text/css" media="screen" href="/static/profile.css"> + + <script type="text/javascript" src="/static/jquery.editinplace.1.0.1.packed.js"></script> + <link type="text/css" href="http://jqueryui.com/latest/themes/base/ui.all.css" rel="stylesheet" /> + <script type="text/javascript" src="http://jqueryui.com/latest/ui/ui.core.js"></script> + <script type="text/javascript" src="http://jqueryui.com/latest/ui/ui.datepicker.js"></script> + <script> - jQuery(document).ready(initProfile); - jQuery(document).ready(function() { - jQuery(".linkify").each(function() { - var text = jQuery(this).text(); - jQuery(this).html(linkify(text)); - }); - }); - </script> + jQuery(document).ready(function(){ + initProfile(); + jQuery("#datepicker").datepicker(); + jQuery(".linkify").each(function() { + var text = jQuery(this).text(); + jQuery(this).html(linkify(text)); + }); + }); + </script> + </head> <body> $banner()$ @@ -23,40 +32,41 @@ <div id="log"> <div id="loghead"> - </div> <br> <div id="posts"> $if(dumps)$ $dumps:{ d | $logged_dump(dump=d)$ }$ - $else$ - <h3> </h3> - <h3> </h3> - <h3> </h3> <h3> </h3> - <h3> </h3> - <h3> </h3><div id="newuser"> - <h3>This is your user log, it's where all the images you post - are saved. <br> - To get started join <a href="/chat">Room A</a> and post a - few pictures.</h3> - <h3> </h3></div> - <h3> </h3> - <h3> </h3> <h3> </h3> - <h3> </h3> + + $else$ + <h3> </h3> + <h3> </h3> + <h3> </h3> <h3> </h3> + <h3> </h3> + <h3> </h3><div id="newuser"> + <h3>Welcome to dump.fm! This is your user log, it's where all the images you post are saved. <br> + To get started join <a href="/chat">come on in</a> and post a few pictures.</h3> + <h3> </h3></div> + <h3> </h3> + <h3> </h3> <h3> </h3> - $endif$ - <p> </p> - <div id="pnav"> - <div id="pnavo"> + <h3> </h3> + <h3> </h3> + $endif$ + + <p> </p> + <div id="pnav"> + <div id="pnavo"> + $if(next)$ - <a href="/u/$nick$/$next$"><- OLD DUMPS</a> + <a href="/u/$nick$/$next$">☜ OLD DUMPS</a> $endif$ </div> <div id="pnavn"> - + $if(prev)$ - <a href="/u/$nick$/$prev$">NEW DUMPS -></a> + <a href="/u/$nick$/$prev$">NEW DUMPS ☞</a> $endif$ <br><br> @@ -82,13 +92,14 @@ </div> <br> - <h3>personal info</h3> + <h3>personal info</h3> <div id="bio" class="$if(is_home)$editable$else$linkify$endif$"> $bio$ </div> - <br><br><br> - - </div> + <br> + <div id="date"> + <div type="text" id="datepicker"></div></div> + </div> <div id="footer"> $footer()$ |
