mirror of
https://github.com/friendica/friendica
synced 2024-11-15 15:33:54 +00:00
26 lines
1 KiB
Smarty
26 lines
1 KiB
Smarty
{{*
|
|
* Copyright (C) 2010-2024, the Friendica project
|
|
* SPDX-FileCopyrightText: 2010-2024 the Friendica project
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*}}
|
|
<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>
|