]> git.mxchange.org Git - friendica.git/blob - view/theme/duepuntozero/templates/profile/vcard.tpl
Merge pull request #9174 from annando/issue-9167
[friendica.git] / view / theme / duepuntozero / templates / profile / vcard.tpl
1
2 <div class="vcard h-card">
3
4         <div class="fn p-name">{{$profile.name}}</div>
5         
6         {{if $profile.addr}}<div class="p-addr">{{$profile.addr}}</div>{{/if}}
7         
8         <div id="profile-photo-wrapper"><img class="photo u-photo" width="175" height="175" src="{{$profile.photo}}?rev={{$profile.picdate}}" alt="{{$profile.name}}"></div>
9
10         {{if $account_type}}<div class="account-type">{{$account_type}}</div>{{/if}}
11
12         {{if $profile.network_link}}<dl class="network"><dt class="network-label">{{$network}}</dt><dd class="x-network">{{$profile.network_link nofilter}}</dd></dl>{{/if}}
13
14         {{if $location}}
15                 <dl class="location">
16                         <dt class="location-label">{{$location}}</dt>
17                         <dd class="adr h-adr">
18                                 {{if $profile.address}}<p class="street-address p-street-address">{{$profile.address nofilter}}</p>{{/if}}
19                                 {{if $profile.location}}<p class="p-location">{{$profile.location}}</p>{{/if}}
20                         </dd>
21                 </dl>
22         {{/if}}
23
24         {{if $profile.about}}<div class="title">{{$profile.about nofilter}}</div>{{/if}}
25
26         {{if $profile.upubkey}}<div class="key" style="display:none;">{{$profile.upubkey}}</div>{{/if}}
27
28         {{if $homepage}}<dl class="homepage"><dt class="homepage-label">{{$homepage}}</dt><dd class="homepage-url"><a href="{{$profile.homepage}}" class="u-url" rel="me" target="external-link">{{$profile.homepage}}</a></dd></dl>{{/if}}
29
30         {{include file="diaspora_vcard.tpl"}}
31
32         <div id="profile-vcard-break"></div>
33         <div id="profile-extra-links">
34                 <ul>
35                         {{if $unfollow_link}}
36                                 <li><a id="dfrn-request-link" href="{{$unfollow_link}}">{{$unfollow}}</a></li>
37                         {{/if}}
38                         {{if $follow_link}}
39                                 <li><a id="dfrn-request-link" href="{{$follow_link}}">{{$follow}}</a></li>
40                         {{/if}}
41                         {{if $wallmessage_link}}
42                                 <li><a id="wallmessage-link" href="{{$wallmessage_link}}">{{$wallmessage}}</a></li>
43                         {{/if}}
44                         {{if $subscribe_feed_link}}
45                                 <li><a id="subscribe-feed-link" href="{{$subscribe_feed_link}}">{{$subscribe_feed}}</a></li>
46                         {{/if}}
47                 </ul>
48         </div>
49 </div>
50
51 {{$contact_block nofilter}}
52
53