friendica/view/templates/widget/remote_friends_common.tpl

19 lines
755 B
Smarty
Raw Normal View History

2013-04-23 13:47:57 +02:00
<div id="remote-friends-in-common" class="bigwidget">
<div id="rfic-desc">{{$desc nofilter}} &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{{if $linkmore}}<a href="profile/{{$nickname}}/contacts/common">{{$more}}</a>{{/if}}</div>
{{foreach $contacts as $contact}}
2013-04-23 13:47:57 +02:00
<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}}" />
2013-04-23 13:47:57 +02:00
</a>
</div>
<div class="profile-match-break"></div>
<div class="profile-match-name">
<a href="{{$contact.url}}" title="{{$contact.name}}">{{$contact.name}}</a>
2013-04-23 13:47:57 +02:00
</div>
<div class="profile-match-end"></div>
</div>
{{/foreach}}
<div id="rfic-end" class="clear"></div>
</div>