friendica-github/view/theme/frio/templates/contact/list.tpl

17 lines
519 B
Smarty
Raw Normal View History

{{* This is the standard template for showing contact lists. It is used e.g.
2016-04-20 01:15:35 +00:00
at the suggest page and also at many other places *}}
<div class="generic-page-wrapper">
{{include file="section_title.tpl"}}
2016-04-20 01:15:35 +00:00
{{$tab_str nofilter}}
2016-04-20 00:59:32 +00:00
<ul id="viewcontact_wrapper{{if $id}}-{{$id}}{{/if}}" class="viewcontact_wrapper media-list">
2016-04-20 00:59:32 +00:00
{{foreach $contacts as $contact}}
<li>{{include file="contact/entry.tpl"}}</li>
2016-04-20 00:59:32 +00:00
{{/foreach}}
</ul>
<div class="clear"></div>
<div id="view-contact-end"></div>
2016-04-20 00:59:32 +00:00
{{$paginate nofilter}}
</div>