]> git.mxchange.org Git - friendica.git/blob - view/theme/quattro/templates/profile/vcard.tpl
Merge pull request #13758 from Raroun/frio_More_space_between_photo_permissions_and_s...
[friendica.git] / view / theme / quattro / templates / profile / vcard.tpl
1 <div class="vcard h-card">
2
3         <div class="tool">
4                 <div class="fn p-name" dir="auto">{{$profile.name}}</div>
5                 {{if $profile.edit}}
6                         <div class="action">
7                         <a class="icon s16 edit ttright" href="#" rel="#profiles-menu" title="{{$profile.edit.3}}"><span>{{$profile.edit.1}}</span></a>
8                         <ul id="profiles-menu" class="menu-popup">
9                                 <li>
10                                         <a href="{{$profile.edit.0}}">{{$profile.edit.1}}</a>
11                                 </li>
12                                 <li><a href="settings/profile/photo">{{$profile.menu.chg_photo}}</a></li>
13                         </ul>
14                         </div>
15                 {{/if}}
16         </div>
17
18         {{if $profile.addr}}<div class="p-addr">{{$profile.addr}}</div>{{/if}}
19
20         <div id="profile-photo-wrapper"><img class="photo u-photo" width="175" height="175" src="{{$profile.photo}}" alt="{{$profile.name}}" /></div>
21
22         {{if $account_type}}<div class="account-type">{{$account_type}}</div>{{/if}}
23
24         {{if $profile.network_link}}<dl class="network"><dt class="network-label">{{$network}}</dt><dd class="x-network">{{$profile.network_link nofilter}}</dd></dl>{{/if}}
25
26         {{if $location}}
27         <dl class="location" dir="auto">
28                 <dt class="location-label">{{$location}}</dt>
29                 <dd class="adr h-adr">
30                         {{if $profile.address}}<p class="street-address p-street-address">{{$profile.address nofilter}}</p>{{/if}}
31                         {{if $profile.location}}<p class="p-location">{{$profile.location}}</p>{{/if}}
32                 </dd>
33         </dl>
34         {{/if}}
35
36         {{if $about}}<div class="title" dir="auto">{{$profile.about nofilter}}</div>{{/if}}
37
38     {{if $profile.xmpp}}
39         <dl class="xmpp">
40         <dt class="xmpp-label">{{$xmpp}}</dt>
41         <dd class="xmpp-data">{{$profile.xmpp}}</dd>
42         </dl>
43     {{/if}}
44
45     {{if $profile.matrix}}
46         <dl class="matrix">
47         <dt class="matrix-label">{{$matrix}}</dt>
48         <dd class="matrix-data">{{$profile.matrix}}</dd>
49         </dl>
50     {{/if}}
51
52         {{if $profile.upubkey}}<div class="key" style="display:none;">{{$profile.upubkey}}</div>{{/if}}
53
54         {{if $homepage}}
55         <dl class="homepage"><dt class="homepage-label">{{$homepage}}</dt>
56                 <dd class="homepage-url"><a href="{{$profile.homepage}}" class="u-url" rel="me" target="external-link">{{$profile.homepage}}</a>{{if $profile.homepage_verified}} <span title="{{$homepage_verified}}">✔</span>{{/if}}</dd>
57         </dl>
58         {{/if}}
59
60         {{include file="diaspora_vcard.tpl"}}
61
62         <div id="profile-extra-links">
63                 <ul>
64                         {{if $unfollow_link}}
65                                 <li><a id="dfrn-request-link" href="{{$unfollow_link}}">{{$unfollow}}</a></li>
66                         {{/if}}
67                         {{if $follow_link}}
68                                 <li><a id="dfrn-request-link" href="{{$follow_link}}">{{$follow}}</a></li>
69                         {{/if}}
70                         {{if $wallmessage_link}}
71                                 <li><a id="wallmessage-link" href="{{$wallmessage_link}}">{{$wallmessage}}</a></li>
72                         {{/if}}
73                         {{if $subscribe_feed_link}}
74                                 <li><a id="subscribe-feed-link" href="{{$subscribe_feed_link}}">{{$subscribe_feed}}</a></li>
75                         {{/if}}
76                 </ul>
77         </div>
78 </div>
79
80 {{$contact_block nofilter}}
81
82