]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/templates/vcard-widget.tpl
Merge remote-tracking branch 'upstream/develop' into 1606-contact-priority
[friendica.git] / view / theme / frio / templates / vcard-widget.tpl
1
2 <div class="vcard widget">
3         {{if $url}}
4                 <div id="profile-photo-wrapper" class="thumbnail"><a href="{{$url}}"><img class="vcard-photo photo" src="{{$photo}}" alt="{{$name}}" /></a></div>
5         {{else}}
6                 <div id="profile-photo-wrapper" class="thumbnail"><img class="vcard-photo photo" src="{{$photo}}" alt="{{$name}}" /></div>
7         {{/if}}
8
9         {{* The short information which will appended to the second navbar by scrollspy *}}
10         <div id="vcard-short-info-wrapper" style="display: none;">
11                 <div id="vcard-short-info" class="media" style="display: none">
12                         <div id="vcard-short-photo-wrapper" class="pull-left">
13                                 <img class="media-object" src="{{$photo}}" alt="{{$name}}" />
14                         </div>
15
16                         <div id="vcard-short-desc" class="media-body">
17                                 <h4 class="media-heading">{{$name}}</h4>
18                                 {{if $addr}}<div class="vcard-short-addr">{{$addr}}</div>{{/if}}
19                         </div>
20                 </div>
21         </div>
22
23         <div class="panel-body">
24                 <div class="fn">{{$name}}</div>
25                 {{if $addr}}<div class="p-addr">{{$addr}}</div>{{/if}}
26                 {{if $pdesc}}<div class="title">{{$pdesc}}</div>{{/if}}
27
28                 {{if $account_type}}<div class="account-type">{{$account_type}}</div>{{/if}}
29                 {{if $network_name}}<dl class="network"><dt class="network-label">{{$network}}</dt><dd class="x-network">{{$network_name}}</dd></dl>{{/if}}
30                 <div id="profile-vcard-break"></div>
31         </div>
32 </div>