streams/view/tpl/profile_vcard.tpl

53 lines
1.9 KiB
Smarty
Raw Normal View History

<div class="vcard">
{{ if $profile.edit }}
<div class="action">
<a class="profile-edit-side-link icon edit" rel="#profiles-menu" title="$profile.edit.3" href="#" ><span>$profile.edit.1</span></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 class="fn label">$profile.name</div>
2013-01-01 01:18:11 +00:00
2011-08-31 15:31:44 +00:00
{{ if $pdesc }}<div class="title">$profile.pdesc</div>{{ endif }}
<div id="profile-photo-wrapper"><img class="photo" width="175" height="175" src="$profile.photo?rev=$profile.picdate" alt="$profile.name"></div>
2011-09-01 10:37:30 +00:00
2011-08-31 15:31:44 +00:00
{{ if $location }}
2011-09-01 10:37:30 +00:00
<dl class="location"><dt class="location-label">$location</dt>
<dd class="adr">
2011-08-31 15:31:44 +00:00
{{ if $profile.address }}<div class="street-address">$profile.address</div>{{ endif }}
<span class="city-state-zip">
<span class="locality">$profile.locality</span>{{ if $profile.locality }}, {{ endif }}
<span class="region">$profile.region</span>
2012-08-31 01:17:38 +00:00
<span class="postal-code">$profile.postal_code</span>
2011-08-31 15:31:44 +00:00
</span>
2012-08-31 01:17:38 +00:00
{{ if $profile.country_name }}<span class="country-name">$profile.country_name</span>{{ endif }}
2011-09-01 10:37:30 +00:00
</dd>
</dl>
2011-08-31 15:31:44 +00:00
{{ endif }}
2011-09-01 10:37:30 +00:00
{{ if $gender }}<dl class="mf"><dt class="gender-label">$gender</dt> <dd class="x-gender">$profile.gender</dd></dl>{{ endif }}
2011-08-31 15:31:44 +00:00
2011-09-01 10:37:30 +00:00
{{ if $marital }}<dl class="marital"><dt class="marital-label"><span class="heart">&hearts;</span>$marital</dt><dd class="marital-text">$profile.marital</dd></dl>{{ endif }}
2012-09-10 04:26:36 +00:00
{{ if $homepage }}<dl class="homepage"><dt class="homepage-label">$homepage</dt><dd class="homepage-url"><a href="$profile.homepage" >$profile.homepage</a></dd></dl>{{ endif }}
2011-08-18 06:01:44 +00:00
2011-09-01 10:37:30 +00:00
2011-08-31 15:31:44 +00:00
</div>
<div id="vcard-end"></div>
2011-08-31 15:31:44 +00:00
$contact_block