mirror of
https://github.com/friendica/friendica
synced 2024-11-10 02:22:55 +00:00
a609e545b6
Addes collapsable remote friends in common for frio and vier
20 lines
880 B
Smarty
20 lines
880 B
Smarty
<div id="rfic-desc" onclick="openClose('remote-friends-in-common-wrapper');">{{$desc nofilter}}  {{if $linkmore}}<a href="profile/{{$nickname}}/contacts/common">{{$more}}</a>{{/if}}</div>
|
|
<div id="remote-friends-in-common-wrapper">
|
|
<div id="remote-friends-in-common" class="bigwidget" >
|
|
{{foreach $contacts as $contact}}
|
|
<div class="profile-match-wrapper">
|
|
<div class="profile-match-photo">
|
|
<a href="{{$contact.url}}">
|
|
<img src="{{$contact.photo}}" width="80" height="80" alt="{{$contact.name}}" title="{{$contact.name}}" />
|
|
</a>
|
|
</div>
|
|
<div class="profile-match-break"></div>
|
|
<div class="profile-match-name">
|
|
<a href="{{$contact.url}}" title="{{$contact.name}}">{{$contact.name}}</a>
|
|
</div>
|
|
<div class="profile-match-end"></div>
|
|
</div>
|
|
{{/foreach}}
|
|
<div id="rfic-end" class="clear"></div>
|
|
</div>
|
|
</div>
|