diff options
author | Simon <simon@kisikew.org> | 2012-03-15 12:08:59 -0700 |
---|---|---|
committer | Simon <simon@kisikew.org> | 2012-03-15 12:08:59 -0700 |
commit | ab89aa90caced4f60fc0ae944c7190e156a872e2 (patch) | |
tree | 15470bcf93da4a04164fcda4a7c3dfe7df0ad085 /view/theme/dispy-dark/profile_vcard.tpl | |
parent | f96aff5518d2d5fb726d381892893a68d8c36450 (diff) | |
parent | 5b757e4e0e2f33a17a5a17953e49aba44a6ae7b3 (diff) | |
download | volse-hubzilla-ab89aa90caced4f60fc0ae944c7190e156a872e2.tar.gz volse-hubzilla-ab89aa90caced4f60fc0ae944c7190e156a872e2.tar.bz2 volse-hubzilla-ab89aa90caced4f60fc0ae944c7190e156a872e2.zip |
Merge pull request #135 from simonlnu/master
commit latest to dispy-dark. fixes in html css and js
Diffstat (limited to 'view/theme/dispy-dark/profile_vcard.tpl')
-rw-r--r-- | view/theme/dispy-dark/profile_vcard.tpl | 39 |
1 files changed, 27 insertions, 12 deletions
diff --git a/view/theme/dispy-dark/profile_vcard.tpl b/view/theme/dispy-dark/profile_vcard.tpl index 5cb567f5a..6228e4f28 100644 --- a/view/theme/dispy-dark/profile_vcard.tpl +++ b/view/theme/dispy-dark/profile_vcard.tpl @@ -1,30 +1,45 @@ <div class="vcard"> <div class="fn label">$profile.name</div> - + + {{ if $profile.edit }} + <div class="action"> + <span class="icon-profile-edit"></span> + <a href="#" rel="#profiles-menu" class="ttright" id="profiles-menu-trigger" title="$profile.edit.3">$profile.edit.1</a> + <ul id="profiles-menu" class="menu-popup"> + {{ for $profile.menu.entries as $e }} + <li> + <a href="profiles/$e.id"><img src='$e.photo'>$e.profile_name</a> + </li> + {{ endfor }} + <li><a href="profile_photo" >$profile.menu.chg_photo</a></li> + <li><a href="profiles/new" id="profile-listing-new-link">$profile.menu.cr_new</a></li> + + </ul> + </div> + {{ endif }} + </div> + {{ if $pdesc }} <div class="title">$profile.pdesc</div> {{ endif }} <div id="profile-photo-wrapper"> - <img class="photo" width="175" height="175" src="$profile.photo" alt="$profile.name" /> - <div class="profile-edit-side-div"> - <a class="profile-edit-side-link icon edit" title="$profile.$editprofile" href="profiles/$profile.id" ></a> - </div> - <div class="clear"></div> + <img class="photo" width="175" height="175" src="$profile.photo?rev=$profile.picdate" alt="$profile.name" /> </div> {{ if $location }} <div class="location"> <span class="location-label">$location</span> - <address class="adr"> + <div class="adr"> {{ if $profile.address }} <div class="street-address">$profile.address</div>{{ endif }} - <span class="city-state-zip">$profile.zip</span> - <span class="locality">$profile.locality</span>{{ if $profile.locality }}, {{ endif }} - <span class="region">$profile.region</span> - <span class="postal-code">$profile.postal-code</span> + <span class="city-state-zip"> + <span class="locality">$profile.locality</span>{{ if $profile.locality }}, {{ endif }} + <span class="region">$profile.region</span> + <span class="postal-code">$profile.postal-code</span> + </span> {{ if $profile.country-name }}<span class="country-name">$profile.country-name</span>{{ endif }} - </address> + </div> </div> {{ endif }} |