]> git.mxchange.org Git - friendica.git/blob - view/templates/widget/remote_friends_common.tpl
Merge pull request #12371 from loma-one/patch-1
[friendica.git] / view / templates / widget / remote_friends_common.tpl
1 <div id="remote-friends-in-common" class="bigwidget">
2         <div id="rfic-desc">{{$desc nofilter}} &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{{if $linkmore}}<a href="profile/{{$nickname}}/contacts/common">{{$more}}</a>{{/if}}</div>
3         {{foreach $contacts as $contact}}
4         <div class="profile-match-wrapper">
5                 <div class="profile-match-photo">
6                         <a href="{{$contact.url}}">
7                                 <img src="{{$contact.photo}}" width="80" height="80" alt="{{$contact.name}}" title="{{$contact.name}}" />
8                         </a>
9                 </div>
10                 <div class="profile-match-break"></div>
11                 <div class="profile-match-name">
12                         <a href="{{$contact.url}}" title="{{$contact.name}}">{{$contact.name}}</a>
13                 </div>
14                 <div class="profile-match-end"></div>
15         </div>
16         {{/foreach}}
17         <div id="rfic-end" class="clear"></div>
18 </div>