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