]> git.mxchange.org Git - friendica.git/blob - view/templates/suggest_friends.tpl
sugest.php: themeable as whole page
[friendica.git] / view / templates / suggest_friends.tpl
1
2 {{include file="section_title.tpl"}}
3
4 {{foreach $entries as $entry}}
5         <div class="profile-match-wrapper">
6                 <a href="{{$entry.ignlnk}}" title="{{$entry.ignore}}" class="icon drophide profile-match-ignore" onmouseout="imgdull(this);" onmouseover="imgbright(this);" onclick="return confirmDelete();" ></a>
7                 <div class="profile-match-photo">
8                         <a href="{{$entry.url}}">
9                                 <img src="{{$entry.photo}}" alt="{{$entry.name}}" width="80" height="80" title="{{$entry.name}} [{{$entry.url_clean}}]" />
10                         </a>
11                 </div>
12                 <div class="profile-match-break"></div>
13                 <div class="profile-match-name">
14                         <a href="{{$entry.url}}" title="{{$entry.name}}">{{$entry.name}}</a>
15                 </div>
16                 <div class="profile-match-end"></div>
17                 {{if $entry.connlnk}}
18                 <div class="profile-match-connect"><a href="{{$entry.connlnk}}" title="{{$entry.conntxt}}">{{$entry.conntxt}}</a></div>
19                 {{/if}}
20         </div>
21 {{/foreach}}
22
23 <div class="clear"></div>