]> git.mxchange.org Git - friendica.git/blob - view/theme/testbubble/templates/profile_vcard.tpl
Merge pull request #2263 from tobiasd/20160118-messages
[friendica.git] / view / theme / testbubble / templates / profile_vcard.tpl
1
2 <div class="vcard">
3         <div class="fn label">{{$profile.name}}</div>
4                                 
5         
6         {{if $pdesc}}<div class="title">{{$profile.pdesc}}</div>{{/if}}
7         <div id="profile-photo-wrapper"><img class="photo" width="175" height="175" src="{{$profile.photo}}" alt="{{$profile.name}}"></div>
8
9
10
11         {{if $location}}
12                 <dl class="location"><dt class="location-label">{{$location}}</dt> 
13                 <dd class="adr">
14                         {{if $profile.address}}<div class="street-address">{{$profile.address}}</div>{{/if}}
15                         <span class="city-state-zip">
16                                 <span class="locality">{{$profile.locality}}</span>{{if $profile.locality}}, {{/if}}
17                                 <span class="region">{{$profile.region}}</span>
18                                 <span class="postal-code">{{$profile.postal_code}}</span>
19                         </span>
20                         {{if $profile.country_name}}<span class="country-name">{{$profile.country_name}}</span>{{/if}}
21                 </dd>
22                 </dl>
23         {{/if}}
24
25         {{if $gender}}<dl class="mf"><dt class="gender-label">{{$gender}}</dt> <dd class="x-gender">{{$profile.gender}}</dd></dl>{{/if}}
26         
27         {{if $profile.pubkey}}<div class="key" style="display:none;">{{$profile.pubkey}}</div>{{/if}}
28
29         {{if $marital}}<dl class="marital"><dt class="marital-label"><span class="heart">&hearts;</span>{{$marital}}</dt><dd class="marital-text">{{$profile.marital}}</dd></dl>{{/if}}
30
31         {{if $homepage}}<dl class="homepage"><dt class="homepage-label">{{$homepage}}</dt><dd class="homepage-url"><a href="{{$profile.homepage}}" target="external-link">{{$profile.homepage}}</a></dd></dl>{{/if}}
32
33         {{include file="diaspora_vcard.tpl"}}
34         
35         <div id="profile-extra-links">
36                 <ul>
37                         {{if $connect}}
38                                 <li><a id="dfrn-request-link" href="dfrn_request/{{$profile.nickname}}">{{$connect}}</a></li>
39                         {{/if}}
40                 </ul>
41         </div>
42 </div>
43
44 {{$contact_block}}
45
46