]> git.mxchange.org Git - friendica.git/blob - view/theme/frost-mobile/templates/profile_vcard.tpl
Merge pull request #2102 from annando/1511-unseen-forums
[friendica.git] / view / theme / frost-mobile / templates / profile_vcard.tpl
1
2 <div class="vcard">
3
4         <div class="fn label">{{$profile.name}}</div>
5         
6         {{if $profile.faddr}}<div class="p-faddr">{{$profile.faddr}}</div>{{/if}}
7         
8         {{if $pdesc}}<div class="title">{{$profile.pdesc}}</div>{{/if}}
9         <div id="profile-photo-wrapper"><img class="photo" width="175" height="175" src="{{$profile.photo}}?rev={{$profile.picdate}}" alt="{{$profile.name}}"></div>
10
11
12
13         {{if $location}}
14                 <dl class="location"><dt class="location-label">{{$location}}</dt> 
15                 <dd class="adr">
16                         {{if $profile.address}}<div class="street-address">{{$profile.address}}</div>{{/if}}
17                         <span class="city-state-zip">
18                                 <span class="locality">{{$profile.locality}}</span>{{if $profile.locality}}, {{/if}}
19                                 <span class="region">{{$profile.region}}</span>
20                                 <span class="postal-code">{{$profile.postal_code}}</span>
21                         </span>
22                         {{if $profile.country_name}}<span class="country-name">{{$profile.country_name}}</span>{{/if}}
23                 </dd>
24                 </dl>
25         {{/if}}
26
27         {{if $gender}}<dl class="mf"><dt class="gender-label">{{$gender}}</dt> <dd class="x-gender">{{$profile.gender}}</dd></dl>{{/if}}
28         
29         {{if $profile.pubkey}}<div class="key" style="display:none;">{{$profile.pubkey}}</div>{{/if}}
30
31         {{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}}
32
33         {{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}}
34
35         {{include file="diaspora_vcard.tpl"}}
36
37         <div id="profile-vcard-break"></div>    
38         <div id="profile-extra-links">
39                 <ul>
40                         {{if $connect}}
41                                 <li><a id="dfrn-request-link" href="dfrn_request/{{$profile.nickname}}">{{$connect}}</a></li>
42                         {{/if}}
43                         {{if $wallmessage}}
44                                 <li><a id="wallmessage-link" href="wallmessage/{{$profile.nickname}}">{{$wallmessage}}</a></li>
45                         {{/if}}
46                 </ul>
47         </div>
48 </div>
49
50 {{$contact_block}}
51
52