]> git.mxchange.org Git - friendica.git/blob - view/theme/duepuntozero/templates/profile/vcard.tpl
Fix providing the public key
[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"><dt class="location-label">{{$location}}</dt> 
16                 <dd class="adr h-adr">
17                         {{if $profile.address}}<div class="street-address p-street-address">{{$profile.address nofilter}}</div>{{/if}}
18                         <span class="city-state-zip">
19                                 <span class="locality p-locality">{{$profile.locality}}</span>{{if $profile.locality}}, {{/if}}
20                                 <span class="region p-region">{{$profile.region}}</span>
21                                 <span class="postal-code p-postal-code">{{$profile.postal_code}}</span>
22                         </span>
23                         {{if $profile.country_name}}<span class="country-name p-country-name">{{$profile.country_name}}</span>{{/if}}
24                 </dd>
25                 </dl>
26         {{/if}}
27
28         {{if $profile.about}}<div class="title">{{$profile.about nofilter}}</div>{{/if}}
29
30         {{if $profile.upubkey}}<div class="key" style="display:none;">{{$profile.upubkey}}</div>{{/if}}
31
32         {{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}}
33
34         {{include file="diaspora_vcard.tpl"}}
35
36         <div id="profile-vcard-break"></div>
37         <div id="profile-extra-links">
38                 <ul>
39                         {{if $unfollow_link}}
40                                 <li><a id="dfrn-request-link" href="{{$unfollow_link}}">{{$unfollow}}</a></li>
41                         {{/if}}
42                         {{if $follow_link}}
43                                 <li><a id="dfrn-request-link" href="{{$follow_link}}">{{$follow}}</a></li>
44                         {{/if}}
45                         {{if $wallmessage_link}}
46                                 <li><a id="wallmessage-link" href="{{$wallmessage_link}}">{{$wallmessage}}</a></li>
47                         {{/if}}
48                         {{if $subscribe_feed_link}}
49                                 <li><a id="subscribe-feed-link" href="{{$subscribe_feed_link}}">{{$subscribe_feed}}</a></li>
50                         {{/if}}
51                 </ul>
52         </div>
53 </div>
54
55 {{$contact_block nofilter}}
56
57