]> git.mxchange.org Git - friendica.git/blob - view/smarty3/remote_friends_common.tpl
Implement Smarty3
[friendica.git] / view / smarty3 / remote_friends_common.tpl
1 <div id="remote-friends-in-common" class="bigwidget">
2         <div id="rfic-desc">{{$desc}} &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{{if $linkmore}}<a href="{{$base}}/common/rem/{{$uid}}/{{$cid}}">{{$more}}</a>{{/if}}</div>
3         {{if $items}}
4         {{foreach $items as $item}}
5         <div class="profile-match-wrapper">
6                 <div class="profile-match-photo">
7                         <a href="{{$item.url}}">
8                                 <img src="{{$item.photo}}" width="80" height="80" alt="{{$item.name}}" title="{{$item.name}}" />
9                         </a>
10                 </div>
11                 <div class="profile-match-break"></div>
12                 <div class="profile-match-name">
13                         <a href="{{$itemurl}}" title="{{$item.name}}">{{$item.name}}</a>
14                 </div>
15                 <div class="profile-match-end"></div>
16         </div>
17         {{/foreach}}
18         {{/if}}
19         <div id="rfic-end" class="clear"></div>
20 </div>
21