diff options
| author | Scott Ostler <scottbot9000@gmail.com> | 2011-02-22 01:21:00 -0500 |
|---|---|---|
| committer | Scott Ostler <scottbot9000@gmail.com> | 2011-02-22 01:21:00 -0500 |
| commit | ccd0ddba1df405b6560821903bfa820bf4c54d10 (patch) | |
| tree | 19d0e048613cb7227deaadcf682a047db06f049a /template/profile.st | |
| parent | 663766fb5e0b53c465f5277ea561cca1399521ed (diff) | |
add updating fav counts
Diffstat (limited to 'template/profile.st')
| -rw-r--r-- | template/profile.st | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/template/profile.st b/template/profile.st index 82c77e6..f37aeba 100644 --- a/template/profile.st +++ b/template/profile.st @@ -34,7 +34,7 @@ jQuery(document).ready(function() { $if(avatar)$ <div id="dashtotal"style="background-image:url($avatar$);opacity:0.1;width:100%;height:100%;z-index:-1"></div> $else$ - <div id="dashtotal"style="background-image:url(http://dump.fm/static/img/thumbs/stripes.gif);width:100%;height:100%;z-index:-1"></div> + <div id="dashtotal"style="background-image:url($domain$/static/img/thumbs/stripes.gif);width:100%;height:100%;z-index:-1"></div> $endif$ $banner()$ @@ -46,7 +46,7 @@ jQuery(document).ready(function() { <img id="dashavatarPic" src="$avatar$"/> </div> $else$ - <img id="avatarPic" src="/static/img/noinfo.png"> + <img id="avatarPic" src="$domain$/static/img/noinfo.png"> $endif$ @@ -60,18 +60,16 @@ jQuery(document).ready(function() { $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" /> + <img id="spinner" src="$domain$/static/img/spinner.gif" style="display: none" /> </div> $endif$ <div id="dashinfo"> - <h2> - $nick$$if(score_ent)$$score_ent$$endif$ </h2> - + <h2>$nick$$if(score_ent)$$score_ent$$endif$</h2> <br> <h3>contact info</h3> $if(contact)$ <div id="contact" class="linkify-text">$contact$</div> $else$ - <img id="contact" src="/static/img/noinfo.png"> + <img id="contact" src="$domain$/static/img/noinfo.png"> $endif$ <br> <h3>bio</h3> @@ -90,16 +88,16 @@ jQuery(document).ready(function() { <div id="middash"> - <h2><a href="http://dump.fm/$nick$/log">$if(is_home)$ your $else$ $nick$'s$endif$ posts ➡</a></h2> + <h2><a href="/$nick$/log">$if(is_home)$ your $else$ $nick$'s$endif$ posts ➡</a></h2> <hr> - <h2><a href="http://dump.fm/$nick$/favorites"> $if(is_home)$ your $else$ $nick$'s $endif$ favs ➡</a></h2> + <h2><a href="/$nick$/favorites"> $if(is_home)$ your $else$ $nick$'s $endif$ favs ➡</a></h2> <hr> - <a href="http://dump.fm/$nick$/popular"><h3> $if(is_home)$ your $else$ $nick$'s$endif$ most popular ➡</h3></a> + <a href="/$nick$/popular"><h3> $if(is_home)$ your $else$ $nick$'s$endif$ most popular ➡</h3></a> </div> <div id="dashpix"> - <a href="http://dump.fm/$nick$/log"><div id="favstxt">$if(is_home)$ your $else$ $nick$'s$endif$ most recent dumps</div></a> + <a href="/$nick$/log"><div id="favstxt">$if(is_home)$ your $else$ $nick$'s$endif$ most recent dumps</div></a> <div id="mostrecentdumps"> $imgs: { img | <a target="_blank" href="$img$"><img src="$img$"></img></a> }$ </div> |
